Nechro Posted November 26, 2014 Share Posted November 26, 2014 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 More sharing options...
selwes Posted January 23, 2016 Share Posted January 23, 2016 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 More sharing options...
Recommended Posts