Jump to content

Very simple question: Where do I place my source files?


SlimTim
 Share

Recommended Posts

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

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...