Gravity Error

Hi, I’m following a YouTube tutorial for a platformer game. I’m pretty sure I did everything right but when i run the game my character falls through the level.

I’ve attached my project.

Platformer.zip (66.0 KB)

YouTube Tutorial: https://www.youtube.com/watch?v=V3iJtpvAOxU

You have changed the position of the tilemap, so it is at another position than the collision object. Instead of the tilemap, set the position of the parent game object (“/level”), and keep the position of the tilemap at (0, 0, 0).

3 Likes

Thank you!