Rotation problem

Posted:
Tue Jul 31, 2012 12:19 pm
by assasin956
Hi, I'm making shooting game but i have problem with rotating hands of my character.They should point mouse but they don't.
Re: Rotation problem

Posted:
Tue Jul 31, 2012 9:52 pm
by AliceXIII
without the data folder we can't get the hands to rotate because said hands don't exist, because we don' have your images

Re: Rotation problem

Posted:
Fri Aug 03, 2012 7:07 pm
by SuperSonic
Replace the draw actor code with this:
- Code: Select all
angle=direction(x, y, xmouse+view.x, ymouse+view.y);
animpos=angle/360*nframes;

Re: Rotation problem

Posted:
Fri Aug 03, 2012 7:08 pm
by friedfish
change the x and y into xscreen and yxcreen...
here:
- Code: Select all
angle=direction(xscreen, yscreen, xmouse, ymouse); //test angle
animpos=angle/360*nframes;