Jump to content

Button staying down once pressed


Nechro
 Share

Recommended Posts

I can post some code if needed but, when testing my game on a Nexus 7 tablet whenever I press a button it stays in the down state, never returning to the out state. This situation doesn't occur on my Xperia V phone or on Google Chrome.

Link to comment
Share on other sites

  • 1 year later...

I had a similar problem when running my game on a touch screen. 

I had the button so that the image only changed when the button was pressed:

game.add.button(game.wold.centerX, game.world.height, 'jumpButton', loadJump, this, 'down', 'up', 'down', 'down');

this was when I was experiancing the issue. I then changed the code to :
game.add.button(game.world.centerX, game.world.height, 'jumpButton', loadJump, this, 'down', 'up', 'down', 'up');

this seemed to fix the issue.

Hope that helps :)

 

Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

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