Jump to content

How to disable pressing multiple keys at once?


vince677
 Share

Recommended Posts

I’m trying to give user an option to choose one from 4 buttons, but when multiple keys are pressed at once, it executes more functions than one.

keyQ.onDown.add(upA, this);
keyW.onDown.add(upB, this);
keyE.onDown.add(upC, this);
keyR.onDown.add(upD, this);
keyT.onDown.add(dismiss, this); 

I tried to use isDown like this, but It isn't working outside update function

if (this.keyQ.isDown)
{
	upA();
}
else if (this.keyW.isDown)
{
	upB();
}

 

Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

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