Jump to content

body.touching.down is never true


soggybag
 Share

Recommended Posts

I'm having a similar problem. body.touching.down is never true. On the other hand body.wasTouching is true when the object hits another object. I'm testing this in update(). I'm not sure why this is, unless touching is true for a moment and then not before update() is called? 

if (this.cursor.up.isDown && this.player.body.wasTouching.down) {
        this.player.body.velocity.y = -250;
        // this.player.body.acceleration.y = -250;
}

I'm also having a problem where setting the velocity or acceleration on y doesn't do anything. Setting velocity on the x works for some reason? 

Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

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