Condition for shift and key press?
I need to implement debugging controls while making my game. I need to be able to press a key to centre on a coordinate in my 6400x4800 frame and then teleport my player to that area.
I've got 100 rooms in my frame so I can only reasonably set conditions for the first 40 rooms. So pressing key 1 centres on 320x224 and pressing key ? centres on 6080x1664.
But I need more keys to be able to jump to any of the 100 rooms. I also need to be able to set player position with a key press related to that room. So having pressed ? to centre on 6080x1664 I also need to press SHIFT and ?, for example, to teleport my player.
Setting key presses in MMF2 only seems to allow one single key press. Like if I wanted / I need shift and ? but MMF2 only takes the shift key as pressed.
Is this not possible?
Condition for shift and key press?
You want to implement a key press while another key is held? If so:
-repeat while shift key is pressed
+user presses ? Key
Use that event