• Question
  • Does anyone know why i cant put sound in my game without it looping everything

Yeah that's a small problem with code org that barely anybody has the knowledge to do. Not even me. Adding sound/music in a project in game lab is the demon mode to the baby mode of something like play lab. Idk why it does this though.

C'mon code.org help us out. THAT GIVES ME AN IDEA!!!

It's another discussion I made. About code.org should make a new mode

@DaniDaCoder I have a simple solution.

var musicOn = false;

function draw() {
playMusic();
}
function playMusic() {
musicOn = true;
if (!musicOn) {
playSound("YOUR MUSIC HERE");
}
}

    yea there thanks to colack for helping dan

    Deleted5371 Woops do this instead
    @DaniDaCoder I have a simple solution.

    var musicOn = false;

    function draw() {
    playMusic();
    }
    function playMusic() {
    if (!musicOn) {
    playSound("YOUR MUSIC HERE");
    musicOn = true;
    }
    }

    this broke the click and click counter system

    yall dont know how to make links, click the share button and it will actually work

    5 days later

    DaniDaCoder and while ur at that, just remake the whole function draw() thing like what is that crappy formatting? even compressed formatting is easier to read than whatever you call that XD

      oh yeah and you can change the sound to something else. i recommend "sound://category_hits/puzzle_game_button_02.mp3" or you could upload ur own sound(s)

      Chat