New commit

-  Added Audio 🎧
  -  Added system calls 🛠
  -  Started to reimplement UI 🖼
  -  Implemented skin change drop-down 👕
This commit is contained in:
2025-04-26 12:43:03 +02:00
parent 6c4948d0b2
commit 6b33a6cb3e
8 changed files with 255 additions and 11 deletions

19
app/assets/js/inex.js Normal file
View File

@@ -0,0 +1,19 @@
const audio = new Audio()
function startAudio() {
audio.src = "/app/assets/audio/Golden Hill (Radio Edit).mp3"
audio.loop = true
audio.onended = () => {
if (!audio.paused) {
audio.play()
}
}
}
function muteAudio() {
audio.muted = true
}
function unmuteAudio() {
audio.muted = false
}