Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Adds a new feature to the project - Ladder3D. This feature allows NodotCharacter3D to climb up and down ladders in the game. The feature consists of two new scripts: CharacterClimb3D and Ladder3D.
The CharacterClimb3D script manages the climb movement of the character and defines how fast the character can climb. It also registers input actions for climbing, descending, and jumping off the ladder.
The Ladder3D script is a node that, when touched, sets the character to the "climb" state. When the character is in the climb state, they can climb up and down the ladder using the input actions defined in CharacterClimb3D.
Overall, this change adds a new and exciting feature to the game, improving the player experience and making the game more enjoyable.
Closes #74