Testing mp3 sounds + hiding servers

This commit is contained in:
Anuken
2020-11-09 14:33:28 -05:00
parent 43e6da0fed
commit fe27ac6aec
144 changed files with 161 additions and 70 deletions

View File

@@ -41,7 +41,7 @@ public class LoopControl{
data.soundID = -1;
return;
}
sound.setPan(data.soundID, pan, data.curVolume);
sound.set(data.soundID, pan, data.curVolume);
}
data.volume = 0f;

View File

@@ -37,7 +37,7 @@ public class SoundLoop{
}
}
sound.setPan(id, sound.calcPan(x, y), sound.calcVolume(x, y) * volume * baseVolume);
sound.set(id, sound.calcPan(x, y), sound.calcVolume(x, y) * volume * baseVolume);
}
}