Page 1 of 1

set different animation for different direction

PostPosted: Sat Jan 20, 2007 6:00 pm
by UltimatHedgehog
i need to set an attack facing left or right by which way your already looking

PostPosted: Sat Jan 20, 2007 8:49 pm
by makslane
Use the 'Change Animation' action.

PostPosted: Sat Jan 20, 2007 9:23 pm
by UltimatHedgehog
i no i did that but i need to change to the same direction im already facing

PostPosted: Mon Jan 22, 2007 6:17 pm
by Sgt. Sparky
if it is not a moving animation use this on draw actor:
Code: Select all
if(xvelocity < 0)ChangeAnimation("Event Actor", Left);
if(xvelocity > 0)ChangeAnimation("Event Actor",Right);
or somthing like that :D if does not recognise it then use the change animation var on the Car/funtion list :D hope that helps. :) :o :D