Last active
August 25, 2018 13:03
-
-
Save gecko655/3980f21d0109cdb6b9718ab7f4064a58 to your computer and use it in GitHub Desktop.
艦これHTML5実装記念.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//console contextを `index.php` (IP直書きのやつ)にセットしておくこと | |
//https://stackoverflow.com/questions/3275816/debugging-iframes-with-chrome-developer-tools | |
//Safariの場合 `htmlwrap` というのをさがせばよい | |
startTime = performance.now(); | |
createjs.Ticker._getTime = () =>{ | |
return startTime + (performance.now() - startTime) * 5; | |
} | |
createjs.Ticker.framerate = 60 / 5; //for saving CPU usage |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment