GeometriX
Thank you. Actually, I managed to figure something very similar out (if not identical in run time/execution). This is what I have so far:
KEYBOARD | W is down
--> Player | Set animation to "IdleToJump" (play from beginning
--> System | Wait 0.15 seconds
--> PlayerBox | Simulate Platform pressing Jump
-------------------------------------------------------------------
PlayerBox | Platform is Jumping
--> Player | Set animation to frame 6 [of the "IdleToJump" animation]
--> System | Wait 0.15 seconds
-------------------------------------------------------------------
PlayerBox | Platform On landed
--> System | Wait 0.15 seconds
--> Player | Set animation to "Idle" (play from beginning)
Even disabling System | Wait 0.15 seconds under Platform On landed
OKAY! That's what I got as far as all of that goes. It seems to work well for the MOST part.
But a new "problem" arose. I want to be able to hold the W button is down, I want my Player to jump repeatedly until I let off the W. But in doing this, instead of staying on frame 6 of my jumping animation, it recycles between frames every 0.15 seconds. I wanted it to end on frame 6 until the collision with a platform sprite.
If I set it to KEYBOARD | W is pressed, then everything runs as it SHOULD, ending on frame 6 of the jump animation, but holding the W down won't make the Player continually jump until I let off the key. I'm not sure if I need to group conditions together or have separate conditions with their own events to respond with...
It occurs to me that the endless jumping may not be viable in a game (this is just me learning the works and trying to figure stuff out), but I'd like to understand what I am perhaps overlooking or could try otherwise. ... Does that all make sense?