Jump to content

Hold down button?


iShellz
 Share

Recommended Posts

Hi iShellz,

 

make a bool and set it to true when signal onDown and to false when signal onUp is dispatched.

Check this bool in your update function.

[..]this.isPressed = false;this.fireKey = game.input.keyboard.addKey(Phaser.Keyboard.S);this.fireKey.onDown.add(<function that sets isPressed true> , this);this.fireKey.onUp.add(<function that sets isPressed false> , this);[..]update: function() {[..]if (this.isPressed) {  //add here  }[..]}[..]
Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

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