How do I make it so there are limits to how far you scroll? I'm using velocity, and using trig to simulate move x steps.
Offline
If your using a colour based sensor just put an invisible wall using the "Set Ghost Effect" block.
It also easier to set the Sroll X/Y if its to high or low.
Offline
fillergames wrote:
If your using a colour based sensor just put an invisible wall using the "Set Ghost Effect" block.
It also easier to set the Sroll X/Y if its to high or low.
How do I make the scroll x/y not go if it's too high or low?
Last edited by Firedrake969 (2012-12-07 17:05:04)
Offline
Bump--I need to simulate the If on edge, bounce block, but with scrolling, so I don't know how.
Offline
This script may help?:
when gf clicked forever if <(scrollX) < (AMOUNT)> set [scrollX v] to (AMOUNT) end if <(scrollX) > (AMOUNT2)> set [scrollX v] to (AMOUNT2) end if <(scrollY) < (AMOUNT3)> set [scrollY v] to (AMOUNT3) end if <(scrollY) > (AMOUNT4)> set [scrollY v] to (AMOUNT4) endI hope it does.
Last edited by 30-1 (2012-12-10 13:14:39)
Offline