Phaser3で簡単にゲームを作ってみる
abstract
知り合いがPhaser3を使用してアプリをリリースした。カンタン、軽量、無料でゲームを作れるらしい。
なのでちょっと手を出してみた。
記事
日本語の紹介記事https://hyperts.net/html5-phaser/作ってみる[公式チュートリアル]
step1.Webサーバーのダウンロード
XAMP環境が推奨なのでxampでやる。
step2.Editorの選択
とりあえずVSCodeがあるのでそれにする
step3.phaserのダウンロード
step4.index.htmlを編集する
web root(最初に読み込む場所)にindex.htmlを作成する。
web rootは下記に編集する。
c: > xamp > apahe > conf > httpd.conf
htdocsが規定しているので変更する
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "C:/xampp/htdocs/phaser"
<Directory "C:/xampp/htdocs/phaser">
しかし、403エラーが出たのでアクセス権限をIPに付与する。
httpd.confのrequireをdenied -> grantedに変更する
<Directory />
AllowOverride none
Require all granted
</Directory>
コードは下記
表示確認
webserverで表示