This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ↓↓↓貼り付ける | |
| // ======= Sounds ======= | |
| const soundGoal = new Audio("goal.mp3"); | |
| const soundFly = new Audio("fly.mp3"); | |
| const soundFall = new Audio("fall.mp3"); | |
| // 多重再生対策(連打しても鳴る) | |
| function playSound(audio) { | |
| audio.currentTime = 0; |