This commit is contained in:
Joowon Kim 2025-05-11 13:35:47 +09:00
parent 77cbcf6e15
commit edeeb47b94
4 changed files with 3 additions and 1 deletions

View File

@ -7,6 +7,7 @@
# 2. URL of the git repository
- https://github.com/joowonkime/Mario-fan-game
# 3. Youtube Video Links
https://www.youtube.com/watch?v=rjB9X49TGNM
@ -39,6 +40,8 @@ Also, for the variety of the game, items are dropped at random locations at regu
The player starts with a total of 5 death counts, and the game is to survive by pushing away the opponents using the above methods.
# 5. Code Explanation
![commit](./Report_image/commit_record.png)
This game is based on p5.js.
The entire code can be broken down into the following major components:

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

View File

@ -4,7 +4,6 @@ let bgm = {};
function preloadSounds() {
soundFormats('mp3','wav');
bgm.bgmGround = loadSound('assets/M1_BGM_Ground_Play.mp3');
bgm.bgmGroundHurry = loadSound('assets/M1_BGM_Ground_PlayHurry.mp3');
effectSound.jump = loadSound('assets/SMB1 Sounds/M1_SmallMarioJump.wav');
effectSound.fire = loadSound('assets/SMB1 Sounds/M1_FireBall.wav');