Hello!
I want to know if there’s a way to make a symbol move the direction it’s facing.
I have a character which rotates when you press Left/Right:
if(Key.isDown(Key.LEFT))
{
_rotation -= 15;
}
if(Key.isDown(Key.RIGHT))
{
_rotation += 15;
}
So this controls which way it’s facing, then I want to make it move in that direction when I press UP.
I hope you know what I mean, and can help.
Many thanks
-Script.ist
Edit: I forgot to say: It’s actionscript 2.0.