Hello My attack animation is stuck on frame one when i jump and attack it works when on floor it doesnot can any body help
Develop games in your browser. Powerful, performant & highly capable.
since "platform is on floor" is constantly true while the player is on the floor, that event constantly executes - which will make the animation start over and over again (never getting past the first frame). you need to add a trigger once, or another condition checking if it is not already playing the attack animation.
you have on space down everytick, is on floor everytick, is not moving everytick... you need to swap the
on space down, to on space pressed, and should work.