Link to .capx file (required!):
mediafire.com/download/qfqfx1idd0as2s0/pauseKeyInterrupt.capx
Steps to reproduce:
The capx has all the setup you need. Please run the capx. Instruction is also provided in the layout.
Observed result:
You have 2 event sheets. Event sheet 1 has a group "not pause" and it includes Event sheet 2 inside the group. This implies that everything in Event sheet 2 is to be disabled, should the group in event sheet 1 is disabled. The actions in event sheet 2 are disabled along with event sheet 1 when group "not pause" is disabled. However, the keyboard event still receives input. Thus, the action will be still be performed.
Expected result:
The expected result is that, the keyboard interrupt should not fire event to the event sheet 2, as it is include in the group "not pause" in event sheet 1.
Browsers affected:
Chrome: yes
Firefox: Yes
Operating system & service pack:
Win 7 ultimate 64 bits
Construct 2 version:
r132 (64 bit)
Workaround: currently, I simply add another condition: timescale NOT equal to 0, in the keyboard event, to prevent this to happen.