mixer: stream lamp

This commit is contained in:
minjaesong
2023-11-19 02:22:15 +09:00
parent 19315ac6e8
commit 574c2e6745
3 changed files with 32 additions and 13 deletions

View File

@@ -488,6 +488,11 @@ class BasicDebugInfoWindow : UICanvas() {
// slider handle
drawFaderHandle(batch, x + 48f, faderY + 18f + meterHeight - dBfs * meterHeight)
// currently streaming
if (track.streamPlaying) {
batch.color = Color.LIME
App.fontSmallNumbers.draw(batch, "\u00C0", x + 17f, faderY + 1f)
}
}
private fun drawFilterParam(batch: SpriteBatch, x: Int, y: Int, filter: TerrarumAudioFilter, track: TerrarumAudioMixerTrack) {