Changing quit experiment key press from escape

Personally I would try

keys = event.getKeys()
if 'b' in keys and 'p' in keys:
        core.quit()
1 Like