Nechro Posted November 26, 2014 Report 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. Quote Link to comment Share on other sites More sharing options...
selwes Posted January 23, 2016 Report 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 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.