From fb00f9faca7276cad063ea5143ebdcfc2802edc4 Mon Sep 17 00:00:00 2001 From: Yash Mittal Date: Wed, 17 Jan 2024 02:24:21 +0530 Subject: [PATCH 1/3] incresed the iterator in the loop so that all the images could be load --- public/src/actions/align to base.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/src/actions/align to base.js b/public/src/actions/align to base.js index 03ab92d7a..d41cbbccc 100644 --- a/public/src/actions/align to base.js +++ b/public/src/actions/align to base.js @@ -32,7 +32,7 @@ class Example extends Phaser.Scene const sprites = []; - for (let i = 1; i < 15; i++) + for (let i = 1; i < 16; i++) { sprites.push(this.add.sprite(150, 493, `image${i}`)); } From e1921eca66b94dcc84f5767ddeceb898f125141e Mon Sep 17 00:00:00 2001 From: Yash Mittal Date: Tue, 23 Jan 2024 01:57:38 +0530 Subject: [PATCH 2/3] Fixed the typo in tween timescale --- public/src/animation/tween timescale.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/src/animation/tween timescale.js b/public/src/animation/tween timescale.js index 0cfef0b46..210d42850 100644 --- a/public/src/animation/tween timescale.js +++ b/public/src/animation/tween timescale.js @@ -39,7 +39,7 @@ class Example extends Phaser.Scene { repeat: -1, repeatDelay: 1000, hold: 1000, - duraton: 3000 + duration: 12000 }); } From 107292b6840440e41d32ac3dcb814b6ab1259863 Mon Sep 17 00:00:00 2001 From: Yash Mittal Date: Tue, 23 Jan 2024 02:00:31 +0530 Subject: [PATCH 3/3] fixed the duration change by mistake --- public/src/animation/tween timescale.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/src/animation/tween timescale.js b/public/src/animation/tween timescale.js index 210d42850..054956dcd 100644 --- a/public/src/animation/tween timescale.js +++ b/public/src/animation/tween timescale.js @@ -39,7 +39,7 @@ class Example extends Phaser.Scene { repeat: -1, repeatDelay: 1000, hold: 1000, - duration: 12000 + duration: 3000 }); }