Thread: Mouse System :D
View Single Post
  #6  
Old 11-15-2002, 12:29 PM
screen_name screen_name is offline
is watching you
Join Date: Mar 2002
Location: The 3rd Dimension
Posts: 2,160
screen_name is on a distinguished road
Send a message via AIM to screen_name Send a message via MSN to screen_name
Quote:
Originally posted by Python523
for the direction, calculate the x and y distance between the player and the point you click at then use the function stefan added (getdir) to change the players direction

dx = mousex-playerx;
dy = mousey-playery;
playerdir=getdir(dx,dy);
Why not just do playerdir = getdir(mousex-playerx,mousey-playery);??
__________________
[signature]insert here[/signature]
Reply With Quote