Fall down through Jumpthru?

0 favourites
  • 7 posts
From the Asset Store
Be careful and guide your animal safely to the grounds.
  • How can I make it so the platform behavior can fall down thru a jumpthru object from above? Like when you wanna jump back down

    Ive tried just moving the players position down a bit with sprite Set Y but it doesnt look like the Jumpthru updates that Im now below it again and it should stop bein solid

    Anyone figured out a way to do it?

  • I'm new to the engine, so I'll try to help you as best as I can with my limited knowledge. Luckily, this is something I'm looking to implement myself in the future.

    This may not be an ideal solution, but it works rather well. I'll let you figure out the exact values you want yourself.

    1) First, set a height you'd like to use for your jump. This will be important later. It can't hurt to have control of this.

    Event:

    System - On start of layout - Player - Set Platform jump strength to 600

    Your player will have to have platform behaviour, I assume they already have it.

    2) The next step is to disable Jumpthru.

    Event:

    Keyboard - On S down (or arrow down, whatever fits your case) - Set jumpthru Disabled

    3) The issue with this is that if you are standing on a Jumpthru when doing so, it doesn't register until you leave it or jump. Which is why you should force a jump.

    Adding a new action, to the event in step 2:

    Player - Simulate Platform pressing Jump

    4) It looks a bit unpolished to jump, when your player wants to fall. It's best to change the jump strength to something low. It will not be visible to the player, but it will allow them to fall through the Jumpthru they are currently on, and the jump is not visible.

    Adding a new action to the event in step 2:

    Player - Set Platform jump strength to 1

    5) This is all well and good, but now all your jumpthru platforms are disabled, and you can't jump more than a single pixel. We need to fix that by making a new event, but we want to set a wait period to allow the player to get through the platform (change it to whatever length you want).

    Event:

    Keyboard - On S released - System - Wait 0.3 seconds

    6) Next we want to re-enable Jumpthru platforms:

    Adding a new action, to the event in step 5:

    Jumpthru - Set Jumpthru Enabled

    7) Now we need to fix the jump, this is where setting a strength in step 1 comes in handy.

    Adding a new action, to the event in step 5:

    Player - Set Platform jump strength to 600

    Here is an example capx:

    https://www.yousendit.com/download/M3BubUpUQ0NOMUNFTmNUQw

  • hey thanks for the example! Its not a great solution but it works sure enough! I had no clue there was enable/disable for solid/jumpthru thats damn useful

  • There is another solution covered in this post:

    http://www.scirra.com/forum/fall-through-platforms_topic48096_page1.html

    I like how there are many solutions to problems in this engine.

    My solution had more steps than it should, because the jumpthru being disabled doesn't immediately reflect on the platform you are currently on.

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Just Press down and you will do a Mario like movement through the top.

    Browser Preview

    http://dl.dropbox.com/u/65622728/JumpSolid/index.html

    and .Capx

    .Capx

    jumpsolid by N7Effect, on Flickr

    I Believe this is easiest way.

  • Heres how I solved it

    <img src="http://dl.dropbox.com/u/53012532/JumpThruSolution.png" border="0" />

  • I started playing with Construct 2 just yesterday, loved it, and as soon as I learned about jump through, the fall through question came in my head. After seeing a lot of solutions, and learning a bit more about conditions and so, I made up a solution of my own, and I think it works quite nicely.

    <img src="http://img69.imageshack.us/img69/9698/fallthrough.png" border="0" />

    It's kinda simple. If players is exactly on top of fallthru platform and it's not jumping(I thought it was silly that you could "fall through" while jumping), the platform jumpthru option is disabled, but this will only make a difference when the player leaves the platform, hence the "Set Y to Player.Y-1" action.

    And then, I restore the Jumpthru option, but with a little system wait, to make sure gravity pulls down the player enough to fallthrough the platform.

    EDIT: Ok, after some testing, some platforms were simply not becoming...platforms, again, I would pass through them like it was nothing. I solved this by doing the actions on the sub-event(7) directly after the actions of the event 6, making sure that no matter what, the Jumpthrough option was enabled again.

Jump to:
Active Users
There are 1 visitors browsing this topic (0 users and 1 guests)