Page 1 of 1

Rotation problem

PostPosted: 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

PostPosted: 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

PostPosted: Fri Aug 03, 2012 6:35 pm
by assasin956
anyone??
:?:

Re: Rotation problem

PostPosted: 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;
:wink:

Re: Rotation problem

PostPosted: 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;

Re: Rotation problem

PostPosted: Sat Aug 04, 2012 9:37 am
by assasin956
thanks, now is working :D