Re-implement audio managers
This commit is contained in:
@@ -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}";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user