Tiles or what to use for levels within a runner game?

Hi!

I was just wondering what the levels within a runner game usually are based on, like tiles or what?
So that i can figure out what i am supposed to do when creating the levels…
Thanks!

short answer, you can use level helper for creating level, or you can use array for type of every block you used in your level, maybe you can passed int parameter for what type your block is, then use enum for variation.

1 Like

I prefer this approach.

Well, thank you!