Re-implement audio managers

This commit is contained in:
2025-09-08 23:24:33 -07:00
parent d830a05d98
commit 4f1251d402
185 changed files with 1747 additions and 1673 deletions

View File

@@ -50,7 +50,7 @@ public partial class PlayerInfoUI : Control, IPlayerInfoUI
private void CurrentLevel_Sync(int obj)
{
LevelNumber.Text = $"LVL. {obj}";
LevelNumber.Text = $"{obj}";
}
private void MaximumVT_Sync(int obj)
@@ -79,10 +79,10 @@ public partial class PlayerInfoUI : Control, IPlayerInfoUI
private void CurrentExp_Sync(double obj)
{
EXPNumber.Text = $"XP {(int)obj}/{Player.Stats.ExpToNextLevel.Value}";
EXPNumber.Text = $"{(int)obj}/{Player.Stats.ExpToNextLevel.Value}";
}
private void ExpToNextLevel_Sync(int obj)
{
EXPNumber.Text = $"XP {Player.Stats.CurrentExp.Value}/{obj}";
EXPNumber.Text = $"{Player.Stats.CurrentExp.Value}/{obj}";
}
}