(SOLVED)Make My Character Fall Down Through A Platform

How do I make my character fall down from one platform to the platform below it?

I’m trying to create a 2D side scroller game where the player can make my character (the pig) fall from one platform to the one below it when they player pressed the “Down” button. However, pressing the “down” button for the player only triggers the character’s falling animation. How do I make so the character falls through when the player presses the “Down” button?

In the screenshot, I’ve used the blue arrow to try and help whomever visualize the trans versing between platforms I’m looking for. The black bars on each platform is what the character’s “defined platform” to stand on is (in short, the character stands on the black bars instead of the green grass sprites and the bars are simply hidden once the scene begins).

One way to do it is
Condition
Down key is pressed
Player is on floor
Player is in collision with platform

Action
Disable platform behavior platform

And then
Condition
INVERTED player is in collision with platform

Action
Enable platform behavior platform

1 Like

Thank you so much! I did what you said, and it works perfectly. c:

1 Like

Are the platforms jump thru?


2 Likes

The platforms are jumpthru, but that problem is fixed now! I do have another coding challenge though I’ll be posting soon, so keep your eyes peeled, haha.

1 Like