View Single Post
  #11  
Old 11-30-2006, 04:59 PM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
Quote:
Originally Posted by ApothiX View Post
PHP Code:
function onActionPulled() {
  
player.+= -vecx(player.dir);
  
player.+= -vecy(player.dir);
  
+= -vecx(player.dir);
  
+= -vecy(player.dir);

Would probably accomplish the same thing, without having 4 different if statements.
Not sure how well this would work?
PHP Code:
function onActionpulled()
{
  
this.player.+= -vecx(player.dir);
  
this.player.+= -vecy(player.dir);

__________________
Skyld
Reply With Quote