bagoftincats Hi! I want to make a simple ladder. I made a state that regulates the behavior when the player comes into contact with the ladder, but no matter how I try, I can’t make the Player climb it. Please help
xyz bagoftincats You should completely separate the code that handles normal movement from the code for ladder movement. Judging from that code photo, your regular movement code executes always, regardless of the state. Instead you should run that only in normal state.
xyz bagoftincats But what should be in the ladder state to make player climb? A movement code similar to regular movement but constrained to up/down axis only. For start you can try just zeroing out the x component of the input direction vector.