From 49d3ccd964aca328d78a06c3b5523c37bd0ba339 Mon Sep 17 00:00:00 2001 From: Anbak98 <149641237+Anbak98@users.noreply.github.com> Date: Mon, 18 Dec 2023 00:28:26 +0900 Subject: [PATCH] Make tutorial directory --- Tutorial/main.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Tutorial/main.js diff --git a/Tutorial/main.js b/Tutorial/main.js new file mode 100644 index 0000000..4faabc1 --- /dev/null +++ b/Tutorial/main.js @@ -0,0 +1,13 @@ +const config = { + type: Phaser.AUTO, + parent: 'app', + width: 800, + height: 600, + physics: { + default: 'arcade', + arcade: { + gravity: { y: 200 }, + }, + }, + scene: [BasicWebGame] +} \ No newline at end of file -- GitLab