Search tutorials
Step 1: Basic movement
Draw the map you want your character to be in, in First-Person-view.
Make it a movie clip, and instance name it as 'map'. Go inside the MC and add a square on the
bottom layer of the map MC. Make it an mc with the instance of 'hit'.
Put the hit MC in the Center of the Map MC. Put this code in the map MC:
onClipEvent (enterFrame) {
if ((Key.isDown(Key.UP)) && (_root.map._yscale<=190) && (_root.map._xscale<=190)) {
_root.map._yscale += 1;
_root.map._xscale += 1;
}
}
onClipEvent (enterFrame) {
if ((Key.isDown(Key.DOWN)) && (_root.map._yscale>=101) && (_root.map._xscale>=101)) {
_root.map._yscale -= 1;
_root.map._xscale -= 1;
}
}
| » Level Advanced |
|
Added: 2005-07-20 Rating: 6 Votes: 9 |
| » Author |
| Hello. |
| » Download |
| Download the files used in this tutorial. |
| Download (5 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!