If you use thing.addEventListener("tick", callback)
, then the callback will only run if thing
fires an event named "tick"
. Otherwise, nothing happens.
Check the documentation for which objects fire which events. In Construct, "tick" is only fired by runtime
.