Home
Help
Search
Calendar
Login
Register
Please
login
or
register
.
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
News:
Click here to join us on IRC (#charas on irc.freenode.net)!
Charas-Project
»
Game Creation
»
Requests
»
RPG Maker Programming
»
Panning problems
« previous
next »
Print
Pages: [
1
]
Author
Topic: Panning problems (Read 1908 times)
Robotam
Member
Exemplar
Posts: 1,346
Panning problems
«
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?
Logged
Whoo, whoo, whoo, whoo!
SaiKar
KOFFING!
Staff
Royal
Posts: 4,082
(No subject)
«
Reply #1 on:
October 22, 2005, 02:03:05 PM »
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.
Logged
Robotam
Member
Exemplar
Posts: 1,346
(No subject)
«
Reply #2 on:
October 22, 2005, 03:30:47 PM »
And there I'm on the road again.
Thank you!
Logged
Whoo, whoo, whoo, whoo!
Print
Pages: [
1
]
« previous
next »
Charas-Project
»
Game Creation
»
Requests
»
RPG Maker Programming
»
Panning problems