From 89520d24547bdef7f22899434de45649aea96187 Mon Sep 17 00:00:00 2001 From: Mark Date: Sun, 26 Jan 2025 21:08:13 -0500 Subject: [PATCH] chore(scenes): update tutorial --- src/scenes/tutorial.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/scenes/tutorial.ts b/src/scenes/tutorial.ts index df2cac7..e0bc18e 100644 --- a/src/scenes/tutorial.ts +++ b/src/scenes/tutorial.ts @@ -20,11 +20,19 @@ scene(Scene.Tutorial, () => { addText({ width: 600, - height: 100, + height: 60, x, y: 80, text: 'WASD or arrow keys to move', }) + addText({ + width: 600, + height: 60, + x, + y: 160, + text: 'Left click to shoot', + }) + addPlayer() })