While trying to implement walljumping, Stencyl can detect the player touching a wall on their right and act on it, but cannot detect if they're touching a wall on their left. Both attributes LeftWalljumpEnabled and RightWalljumpEnabled are being changed and updated equally and correctly, and even though the logic for the left wall jump is exactly the same as the right wall jump, only the right wall jump registers.
- Changing the order of the left/right events does nothing.
- Changing the hitbox of the player to a single solid box does nothing.
- Removing the right wall jump check and leaving the left one in does nothing. Taking out the left one does not effect the right one's functionality.
- There are no other events that would be interfering with the left wall jump.
I'm at a complete loss, any help would be appreciated.
Also I am aware there are existing kits with walljump already implemented, but I want to do this from scratch.