Jump to content

How to get 'Thomas was alone' type of Jump Mechanics with Phaser.ARCADE


PixelProgrammer
 Share

Recommended Posts

Hi there,

  I'm creating a platformer game that is similar in art style and theme to Thomas Was Alone. I'm currently using the Phaser.ARCADE Physics system for my game cause it suits the theme well enough. 

However, I want to implement a jump mechanic that is similar that is similar to Thomas Was Alone. https://www.youtube.com/watch?v=aAfgZrt_93k

As of right now, my jump mechanics is a simple: 

if ((this.player.cursor.up.isDown) && this.player.body.onFloor()) {
            this.player.body.velocity.y = -300;
        }

What do I do to make it feel less 'space-like' and more 'springy'??

Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...