How would I check whether a trigger has been triggered or not using Python script exclusively?
Such as OnAnyClick (MouseKeyboard object).
Develop games in your browser. Powerful, performant & highly capable.
I think this is a limitation in Construct's Python integration. The best thing to do is put a python script as a subevent to the trigger event. Python scripts run where events run, so you can have a kind of script-and-events meld.
Hmm, alternatively I could use trigger events to alter Python variables and then check those in the script. That way I can preserve large blocks of script without breaking it up with events.