feat(UI): 完成UI部分的基本美术优化
This commit is contained in:
@@ -20,8 +20,8 @@ namespace UI
|
||||
private void OnGet(PlayerWatchModeController watchModeCtrl)
|
||||
{
|
||||
watchModeController = watchModeCtrl;
|
||||
modeText.text = "Mode: " + watchModeController.CurrentWatchMode;
|
||||
watchModeController.OnEnterWatchMode += mode => modeText.text = "Mode: " + mode;
|
||||
modeText.text = watchModeController.CurrentWatchMode.ToString();
|
||||
watchModeController.OnEnterWatchMode += mode => modeText.text = mode.ToString();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user