I need a script for a moving platformer, where when you get to, lets say, scrollx 400, something appears(platform) and if you go past it, but then go backwards back to it, it shows again. I dont know how to do this.
Thank YOU!
Offline
ethwok wrote:
I need a script for a moving platformer, where when you get to, lets say, scrollx 400, something appears(platform) and if you go past it, but then go backwards back to it, it shows again. I dont know how to do this.
Thank YOU!
Well, if you look at the examples on scratch you can find a platformer that shows you how to use scrollx.
Hope this helps!
Offline
ethwok wrote:
I need a script for a moving platformer, where when you get to, lets say, scrollx 400, something appears(platform) and if you go past it, but then go backwards back to it, it shows again. I dont know how to do this.
Thank YOU!
You can try having a platform always (forever) set its x position to
(([0] - (scrollx)) + [400])
Offline