├── .gitignore ├── README.md ├── dist ├── bundle.cjs.js ├── bundle.esm.js └── bundle.umd.js ├── docs ├── css │ └── styles.css ├── dist │ └── bundle.umd.js ├── index.html └── js │ ├── setup-demo.js │ ├── setup-stats.js │ ├── setup-threejs.js │ └── setup-vanilla.js ├── package.json ├── rollup.config.js └── src └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | npm-debug.log* 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/game-loop-js/HEAD/README.md -------------------------------------------------------------------------------- /dist/bundle.cjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/game-loop-js/HEAD/dist/bundle.cjs.js -------------------------------------------------------------------------------- /dist/bundle.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/game-loop-js/HEAD/dist/bundle.esm.js -------------------------------------------------------------------------------- /dist/bundle.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/game-loop-js/HEAD/dist/bundle.umd.js -------------------------------------------------------------------------------- /docs/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/game-loop-js/HEAD/docs/css/styles.css -------------------------------------------------------------------------------- /docs/dist/bundle.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/game-loop-js/HEAD/docs/dist/bundle.umd.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/game-loop-js/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/setup-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/game-loop-js/HEAD/docs/js/setup-demo.js -------------------------------------------------------------------------------- /docs/js/setup-stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/game-loop-js/HEAD/docs/js/setup-stats.js -------------------------------------------------------------------------------- /docs/js/setup-threejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/game-loop-js/HEAD/docs/js/setup-threejs.js -------------------------------------------------------------------------------- /docs/js/setup-vanilla.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/game-loop-js/HEAD/docs/js/setup-vanilla.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/game-loop-js/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/game-loop-js/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/game-loop-js/HEAD/src/index.js --------------------------------------------------------------------------------