Jump to content

Tutorial - How to make a game in Phaser 3


fariazz
 Share

Recommended Posts

  • 2 weeks later...
  • 2 weeks later...
On 3/31/2018 at 12:42 PM, PBMCube said:

I discovered running this tutorial and others that brackets does not load assets correctly. It`s possibly my default settings. Yet, when I use XAMPP ,this tutorial works as designed. 

Thanks for your insight on Phaser3

That's strange to hear, Brackets works well on my end for Phaser. I prefer turning the auto-reload feature off and refresh manually.

Another option for a web server is to install Node.js and the http-server package:

1) download and install Node.js

2) on command line, install the http-server package globally:   npm install http-server -g

3) navigate to the folder where your Phaser project is located, type:   http-server   , that will launch a local web server for that folder

Link to comment
Share on other sites

No, that's wasn't it. I discovered that 

On 4/9/2018 at 6:03 PM, fariazz said:

That's strange to hear, Brackets works well on my end for Phaser. I prefer turning the auto-reload feature off and refresh manually.

Another option for a web server is to install Node.js and the http-server package:

1) download and install Node.js

2) on command line, install the http-server package globally:   npm install http-server -g

3) navigate to the folder where your Phaser project is located, type:   http-server   , that will launch a local web server for that folder

No that wasn't it. I found that ...

Phaser v3.x.x (20180322); REMOVE ANTI-PATTERN
 CORS: Remove anti-pattern!
 - https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS
 - https://enable-cors.org/
 Avoid this anti-pattern of omitting the protocols schemes in script "src";
 Cross origin requests are only supported for protocol schemes:
 http, data, chrome, chrome-extension, https.
 - ***the anti-pattern is this:***
 <script src="//cdn.jsdelivr.net/npm/[email protected]/dist/phaser.min.js"></script>
 - use this: <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/phaser.min.js"></script>

 

When I inserted the protocol everything worked perfectly.  Great tutorial now that everything is working.

Link to comment
Share on other sites

  • 4 months later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

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