I am writing my first 2D game (Like mario) with tiles. When users fails to jump proper he falls between the tiles.
Presently he is falling in space for ever when he fails to jump.
How to handle when user fall from a tile to space and make the Game Over.
Put a an object with a trigger collider down in the pits. If the player enters its trigger area, initiate your Game Over stuff.
Alternatively, have the player object detect when it’s below a certain height. This is less flexible, but easier to set up if you don’t need the flexibility.
There’s a million different ways to do a Game Over cinematic, so what happens once you detect that the player has fallen into the pit is up to you.