You are reading a single comment by @Gordon and its replies. Click here to read the full conversation.
  • Hmm, not sure what's up...

    Did you see the recent 1v86 release? You could try using E.kickWatchdog() - it's not ideal, but might be good enough?

    Also, if you want to avoid setTime then you could potentially do something like:

    var timeOffs = 0;
    function safeSetTime(t) {
      timeOffs = t-getTime();
    }
    function safeGetTime() {
      return timeOffs + getTime();
    }
    
About

Avatar for Gordon @Gordon started