Tutorials Home
What's New
Top Rated
Submit
myTutes
Random!
moveDirection
Author: mattyb110
| Website: www.matthew.zaaz.co.uk |
Step1: Create a movie clip.
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: 4.86 Votes: 20
Hits: 640
|
| » Author |
|
What about them?
|
| » Download |
|
Download the files used in this tutorial.
|
|
Download (0 kb)
|
|
Get conversion and unzipping tools
for PC and Mac here!
|
| » Forums |
|
More help? Search our boards for quick answers!
|
|
Please rate this tutorial, 10 is the top rating, you can also click the
comments link to read/write a review.
|
|
|