You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Modifier would always return false for Pressed and Released.
Note: There might be an edge case to think about. What happens if a user is currently pressing A then presses CTRL, Should that trigger Held and HeldOnly for CTRL + A? It might make some code harder to write on the user side.
The text was updated successfully, but these errors were encountered:
In some cases, some keys shouldn't trigger
Pressed
orReleased
. For example:CTRL
+A
.If we're currently holding
A
, then pressingCTRL
shouldn't trigger aCTRL
+A
press.In a select all
CTRL
is a modifier. A new class could be created handle that case:Modifier would always return false for
Pressed
andReleased
.Note: There might be an edge case to think about. What happens if a user is currently pressing
A
then pressesCTRL
, Should that triggerHeld
andHeldOnly
forCTRL
+A
? It might make some code harder to write on the user side.The text was updated successfully, but these errors were encountered: