Charas-Project
Game Creation => Requests => RPG Maker Programming => Topic started by: Robotam on October 22, 2005, 08:35:48 AM
-
Is it possible to pan the screen right-up, right-down, left-up and left-down in Rm2k3?
I know I've done it before but might have been in 2k.
Does anyone have a clue?
-
You have to be sneaky. You pan up 6 squares, and you pan right 6 squares, and you make sure NOT to halt processes when panning up, and it will pan up and to the right.
So, like
Pan screen: Up 6 Tiles, Speed 4
Pan screen: Right 6 Tiles, Speed 4 (wait)
And it will activate both events at the same time and pan diagonally.
If you want it to pan up 2, then up-right 4, then right 2, you put the waits in after each step, like:
Pan screen: Up 2 Tiles, Speed 4 (wait)
Pan screen: Up 4 Tiles, Speed 4
Pan screen: Right 4 Tiles, Speed 4 (wait)
Pan screen: Right 2 Tiles, Speed 4 (wait)
It does the first (up 2), then the second two at the same time since there's no wait after the second up (up-right 4) then the last 2 right.
I guess that more than adequetely answers your question.
-
And there I'm on the road again.
Thank you!