musicplayer: march thru playlist/working track-to-track transition

This commit is contained in:
minjaesong
2023-12-24 23:13:50 +09:00
parent a19c0608f1
commit 74e7e980b7
3 changed files with 103 additions and 43 deletions

View File

@@ -459,8 +459,8 @@ class BasicDebugInfoWindow : UICanvas() {
val dss = AudioMixer.dynamicTracks
dss.forEachIndexed { index, track ->
val px = x - (miniW + 5) * (1 + (index / 11))
val py = y + (miniH + stripGap) * (index % 11)
val px = x - (miniW + 5) * (1 + (index / 13))
val py = y + (miniH + stripGap) * (index % 13)
drawDynamicSource(batch, px, py, track, index)
}
}