Ok I need some major help. I’m making a game and I need it so that teh character movea around with the thrust motion. I have that down but there’s one annoying part about the script.
onClipEvent (enterFrame) {
// rotate right or left
if (Key.isDown(Key.RIGHT)) {
_rotation += 15;
}
if (Key.isDown(Key.LEFT)) {
_rotation -= 15;
}
That Part
I need it so that it rotates the direction that it is going without it actually rotating the picture because it is a collction of movie clips that make a character walking. Please HELP.
Thanks
aussy