Hello, I'm looking for a solution of a problem as below:
Situation:
- The character is jumping left/right (platform, by action "simulate jump").
- While the jump starts, i set a variable "is_jumping" = true
- While it is true, I simulate "move left" - a way you can't change the jump direction - you just jump from point A to B, no matter what you do.
- When it lands, the "is_umping" is set to false.
- While the character is in the air and overlaps a "ladder", I disable the "platform behaviour" (and let the character to climb on ladder).
- While the character is not overlapping the ladder anymore, I turn the behaviour "platform" on again (for example the character leaves the ladder to the right), but then the jump is beeing continued. So the character instead of falling down, continues the jump from the moment it started to overlap the ladder.
Any suggestions, how to reset the jump would be super duper appreciated :-)))
Thanx in advanced!