SlimTim Posted January 27, 2014 Share Posted January 27, 2014 I forked Phaser, local server up and running, everything's snazzy. Now, where do I place my game? Link to comment Share on other sites More sharing options...
ooflorent Posted January 27, 2014 Share Posted January 27, 2014 You're not supposed to fork Phaser to use it in your games.You only have to copy phaser.js to your project (like you usually do with jQuery). Link to comment Share on other sites More sharing options...
ZRT Posted January 28, 2014 Share Posted January 28, 2014 Make a folder that contains your game and create an index.html file in it.. Make two additional folders, like scripts and assets (this will contain images, etc.) phaser.js file goes to your scripts folder. You can call it in the index.html file like this. You write all your game code in another .js file(s) that are also in the scripts folder. Check out this example:<!DOCTYPE html><html><head><title>Game</title></head><body> <script src="scripts/phaser.js"></script> <script src="scripts/game.js"></script></body></html>Hope this helps. Link to comment Share on other sites More sharing options...
Recommended Posts