Sorry if title is not worded correctly or vague.
Basically, what I want is to basically do this: Input.define(“elastoRight”, Key.SPACE && Key.D)
I want elastoRight to only be true if space AND d is held down at the same time.
Is it possible to do this or will I have to listen to both keys at the same time like: Input.check(Key.D) && Input.check(Key.SPACE)