Search tutorials
B. The script for the 4 different walls
Okay, firstly draw a line on the left of the screen and convert it to a symbol, a movie clip (MC) and call it wallleft.
Do the same thing for wallright, walldown and wallup.
Don't forget to give them the instance names of walldown, wallup, wallright and wallleft.
The script i am going to show you is to PUT ON THE MAN, NOT ON THE WALLS.
onClipEvent (enterFrame) {
if (this.hitTest(_this.wallleft)) {
_x = _x+10;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(this.wallup)) {
_y = _y+10;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(this.walldown)) {
_y = _y-10;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(this.wallright)) {
_x = _x-10;
}
}
Okay, no need to be intimidated, i am explaining that script on the next page,
| » Level Intermediate |
|
Added: 2005-02-14 Rating: 7 Votes: 40 |
| » Author |
| I have done a wad of tutorials, am 11, but this one is the greatest yet. |
| » 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!