Hello! I'm new to Godot, and I'm a little bit stuck with a problem.
I have a set of stairs.
And I want my player to generally go back and forth through them, but also be able to climb them if I want to.
I don't really know how to make realistic stairs, so I've just tried to add collisionshapes to them to make them work like slopes. But my player bumps into those collision shapes and gets stuck, can't keep on walking forward. The same thing happens when the player is on the upper platform and needs to go down - it bumps into the lower point of the higher set of stairs and can't keep on walkind down the lower set of stairs.
I thought, maybe I can use collision layers and masks, but I doubt that it can help because the player must find collision in both sets of stairs and, as I understand, the situation with getting stuck would stay the same this way (the player would still collide with all these collision layers).
Maybe I could use some triggers or different kinds of nodes for this? This ladder sits at the beginning of the level, I really want my player not to stuck there and be able to climb these "slopes" if needed :D