Search Tutorials
Step 1: Basic movementDraw 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;
}
}
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|