DbD Posted November 9, 2014 Share Posted November 9, 2014 I'm having some issues with controller support. When I run my game, it says that my controller is active, but I can't move with the controller. Heres the code I'm trying to use:// Reset the players velocity (movement) player.body.velocity.x = 0; if (cursors.left.isDown || pad1.isDown(Phaser.Gamepad.XBOX360_DPAD_LEFT) || pad1.axis(Phaser.Gamepad.XBOX360_STICK_LEFT_X) < -0.1) { // Move to the left player.body.velocity.x = -150; player.animations.play('left'); } else if (cursors.right.isDown || pad1.isDown(Phaser.Gamepad.XBOX360_DPAD_RIGHT) || pad1.axis(Phaser.Gamepad.XBOX360_STICK_LEFT_X) > 0.1) { // Move to the right player.body.velocity.x = 150; player.animations.play('right'); } else { // Stand still player.animations.stop(); player.frame = 4; } Link to comment Share on other sites More sharing options...
Recommended Posts