You are reading a single comment by @DrAzzy and its replies. Click here to read the full conversation.
  • This works, not that I think doing this is a good idea in most circumstances.

    function delay(t) {
      var et=getTime()+t/1000;
      while (getTime() < et) {
    	et=et;
      }
    }
    
About

Avatar for DrAzzy @DrAzzy started