Step2: Right click > actions.
Step3: Copy and paste the following code.
onClipEvent (load) {
speed = 2;
}
onClipEvent (enterFrame) {
if (key.isdown(key.RIGHT)) {
_rotation = 90;
_x+= speed;
}
if (key.isdown(key.LEFT)) {
_rotation = 270;
_x-= speed;
}
if (key.isdown(key.UP)) {
_rotation = 0;
_y-= speed;
}
if (key.isdown(key.DOWN)) {
_rotation = 180;
_y+= speed;
}
(This sets all round speed and direction of object upon pressing the appropriate key)
Step4: Click on the }.
Step5: Copy and paste the following code.
if (key.isdown(key.RIGHT) && key.isdown(key.UP)) {
_rotation = 45;
}
if (key.isdown(key.LEFT) && key.isdown(key.UP)) {
_rotation = 315;
}
if (key.isdown(key.RIGHT) && key.isdown(key.DOWN)) {
_rotation = 135;
}
if (key.isdown(key.LEFT) && key.isdown(key.DOWN)) {
_rotation = 225;
}
}
(This tells it that if two buttons are being pressed, go in a diagonal)
Step6: Control > Test Movie
Well done!
» Level Basic |
Added: 2003-05-01 Rating: 5 Votes: 20 |
» Author |
What about them? |
» Download |
Download the files used in this tutorial. |
Download (0 kb) |
» Forums |
More help? Search our boards for quick answers! |
-
You must have javascript enabled in order to post comments.
Comments
There are no comments yet. Be the first to comment!