is it possible to have this in mmf.
example user press both up and left arrow keys?
Printable View
is it possible to have this in mmf.
example user press both up and left arrow keys?
Hi Willow!
I believe all you have to do to enable this is to make an condition containing both "When Player press up" and "When Player press left". Then choose your action :)
im unsure have you done this your self more info needed
Multiple key combos will work in MMF just make sure you have it set something like:
-Repeat while left arrow key is pressed
+Repeat while up arrow key is pressed
The reason the "Repeat" has to be there is it is almost impossible for the user to be able press the two keys at the same exact time and there is no way for MMF to sense it as it runs like a list of commands from top to bottom.
Also, if needed you may add:
+Only one action if event loops
To prevent over-looping. Always remember that a computer follows instructions like a list and it is impossible for the computer to do two tasks at one time.
-Variant
thanks.