sample-platformer
sample-platformer copied to clipboard
Sample Platformer built in Excalibur
Excalibur Platformer Sample
Play sample here

Running locally
- Using nodejs and npm
- Run the
npm installto install dependencies - Run the
npm run devto run the development server to test out changes- Webpack will build the typescript into javascript
- Webpack dev server will host the script in a little server on http://localhost:9000/
Building bundles
- Run
npm run build:devto produce javascript bundles for debugging in thedist/folder - Run
npm run build:prodto produce javascript bundles for production (minified) in thedist/folder