• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

Tile or object collision?

H

HandicapableOne

Guest
Should I be using tile collision or object collision? Pros and Cons of each?
 

TheouAegis

Member
Use them both. Use the ground as tiles and use everything else as objects. If you are using Studio 2, you almost most definitely want to use tiles for the ground.
 
Tiles are far more efficient. Objects have so much overhead for such a simple purpose.
But tiles align to the grid, so you lose a bit of placement precision. So why not both indeed. Use tiles wherever you can, and an object when you need more precise placement.

In a future update, functions for tile collisions are coming to make it all easier.
 
Top