TwinHamster ♫ Furious souls, burn eternally! ♫

Joined: 07 Mar 2004 Posts: 1352
|
Posted: Sun Feb 24, 2008 6:41 pm Post subject: |
|
|
What you probably want to use is the 'pan camera' command.
For example, let's say you want the screen to shake up and down.
Code: |
Pan camera(Up,4,20)
wait for camera
#---------------------------- Repeat this as much as necessary
Pan camera(Down,8,20)
wait for camera
pan camera (Up,8,20)
wait for camera
#---------------------------- Repeat this as much as necessary
pan camera (down,4,20)
wait for camera
|
So the arguments basically work out as such:
(Direction, Number of Tiles, Camera Speed)
Manipulate as you wish.
Oh, and remember to add a 'Camera Follows Hero' command at the end of that. |
|