Search:

Type: Posts; User: jps

Search: Search took 0.16 seconds.

  1. Replies
    8
    Views
    1,375

    Re: Help with collision!

    Well you are only talking about 6 lines of code. Brute Force!!!
    sysout every variable in the method between every line of code in the method.

    There is no way we can do anything for you without...
  2. Replies
    8
    Views
    1,375

    Re: Help with collision!

    That does not tell us much and you should post the code with your question.
  3. Replies
    8
    Views
    1,375

    Re: Help with collision!

    (par1 / 32) does not return a double because both operands are integers. So math.floor is not required. Nor is the cast to int at that point.
    So:
    int var0 = par1/32;
    is the same thing as above.
    ...
Results 1 to 3 of 3