From e73d490ff6789ba038ea621fb266638304e6d079 Mon Sep 17 00:00:00 2001 From: "dyddnrdl3@naver.com" <dyddnrdl3@naver.com> Date: Sun, 19 Dec 2021 20:29:17 +0900 Subject: [PATCH] home main .md prototype --- README.md | 26 +++++++++++++++++++++----- lifecycle/README.md | 1 + 2 files changed, 22 insertions(+), 5 deletions(-) create mode 100644 lifecycle/README.md diff --git a/README.md b/README.md index 3ad1cca..c62864b 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,26 @@ Phaser is game framework for desktop and mobile via html5. Phaser can be used based on JavaScript or TypeScript. Phaser uses canvas and WebGL renderer which makes more easier to use both desktop and mobile. - However, if you want to make game in modile environment not using mobile web browser, you should look for 3rd party app. - <br/> +However, if you want to make game in modile environment not using mobile web browser, you should look for 3rd party app. + <br/><br/> For more details about Phaser 3, you can see below references <br/> - <strong>Phaser Website</strong>: [Phaser website](https://phaser.io) <br/> - <strong>Phaser API docs</strong>: [photonstorm](https://photonstorm.github.io/phaser3-docs/index.html) <br/> - <strong>Phaser Examples</strong>: [Phaser examples ](https://phaser.io/examples) <br/> + <strong>Phaser Website</strong>: https://phaser.io <br/> + <strong>Phaser API docs</strong>: https://photonstorm.github.io/phaser3-docs/index.html <br/> + <strong>Phaser Examples</strong>: https://phaser.io/examples <br/> +<br/> +# How to prepare for using Phaser? +## Before prepare for phaser +Before prepare for using Phaser, you may need local webserver to run Phaser game because of security issue or CORS problem. In that case, prepare your favorite local webserver environment. +## After setting up environment +You use CDN in script or install phaser by using npm or download at website. Below is phaser archive link you can choose specific version you want. If you download necessary files or use npm for installation, now you are ready to dive in phaser world! (of course, you can use CDN instead) +<br/><br/> +<strong>Phaser Archive</strong>: https://phaser.io/download/archive <br/> +<br/> +# How to make phaser game? +You can make various kinds of game like 2D-scroll game, puzzle game... etc. For starter, I recommend you to refer [Phaser website game examples](https://phaser.io/examples/v3/category/games) +<br/><br/> +# Topics about Phaser 3 +I'd like to talk about some feature, differences and other interesting topics may be helpful for your programming. Belows are my suggest! +<br/> +[<strong>Phaser lifecycle and what you should concern</strong>]() \ No newline at end of file diff --git a/lifecycle/README.md b/lifecycle/README.md new file mode 100644 index 0000000..8e12ffa --- /dev/null +++ b/lifecycle/README.md @@ -0,0 +1 @@ +# Phaser 3 Life cycle -- GitLab