naveen Posted August 7, 2014 Share Posted August 7, 2014 How can we find time elapsed since game start in phaser?likeas3.0 getTimer(), Time.time in unity3d Link to comment Share on other sites More sharing options...
alex_h Posted August 7, 2014 Share Posted August 7, 2014 Date.now() in javascript. Requires a shim to support older versions of IEif ( Date.now === undefined ) { Date.now = function () { return new Date().valueOf(); };} Link to comment Share on other sites More sharing options...
Recommended Posts