working track volume

This commit is contained in:
minjaesong
2023-11-17 20:22:07 +09:00
parent eb5483ae37
commit 452e20488c
4 changed files with 30 additions and 19 deletions

View File

@@ -114,7 +114,7 @@ class TerrarumAudioMixerTrack(val name: String, val isMaster: Boolean = false):
// 1st ring of the hell: the THREADING HELL //
internal var processor = MixerTrackProcessor(32768, this)
internal var processor = MixerTrackProcessor(4096, this)
private val processorThread = Thread(processor).also {
it.start()
}