Im asking for a tutorial to make an endless level like in "go faster". In need help with the scrolling.
What I have:
- An Array "Level"
A Sprite "Tile" with solid behavior(initial disabled)
A Sprite "Player" with Platform behavior.
My Code for the initial level generation:
- System(On start of layout) -> Create object Tile on Layer 0 at Level.CurX*32, Level.CurY*32
Level(For each XY element)
System(On start of layout) -> Set Animation Frame to random(3)
System(For each Tile)
System(On start of layout) -> Set Solid Enabled
System(For each Tile)
Tile(Animation Frame =2)
So how do i make the level scroll? Any advice where to start?
thanks in advance