diff --git a/public/assets/animated-letter/small_d.mp4 b/public/assets/animated-letter/small_d.mp4 index b81ce49..29a18dd 100644 Binary files a/public/assets/animated-letter/small_d.mp4 and b/public/assets/animated-letter/small_d.mp4 differ diff --git a/src/pages/guided-tracing/d.astro b/src/pages/guided-tracing/d.astro index 7cbc70a..cf80cb1 100644 --- a/src/pages/guided-tracing/d.astro +++ b/src/pages/guided-tracing/d.astro @@ -294,8 +294,8 @@ import Layout from "../../layouts/Layout.astro"; firstLayer = this.add.image(customWidth / 2 - 30, customHeight / 2 + letterHeight, 'layer1').setScale(letterScale); textX = isMobile ? customWidth / 4 : customWidth * 0.75; textY = isMobile ? customHeight / 5 : customHeight / 2.4; - const firstTextLayer = this.add.text(textX, textY, '1. Tall Down',{ font: '700 40px quicksand', fill: '#05b3a4'}); - const audioOneAudio = this.sound.add('audioOne'); + const secondTextLayer = this.add.text(textX, textY, '2. Tall Down',{ font: '700 40px quicksand', fill: '#05b3a4'}); + const audioTwoAudio = this.sound.add('audioOne'); // audioOneAudio.play(); firstLayer.setDepth(1); firstLayer.setAlpha(0.5); @@ -303,8 +303,8 @@ import Layout from "../../layouts/Layout.astro"; secondLayer = this.add.image(customWidth / 2 - 30, customHeight / 2 + letterHeight, 'layer2').setScale(letterScale); textX = isMobile ? customWidth / 4 : customWidth * 0.75; - const secondTextLayer = this.add.text(textX, textY, '2. Roll Around',{ font: '700 40px quicksand', fill: '#05b3a4'}); - const audioTwoAudio = this.sound.add('audioTwo'); + const firstTextLayer = this.add.text(textX, textY, '1. Roll Around',{ font: '700 40px quicksand', fill: '#05b3a4'}); + const audioOneAudio = this.sound.add('audioTwo'); secondTextLayer.setVisible(false); secondLayer.setDepth(1); secondLayer.setAlpha(0.5);