예제 #1
0
파일: HUD.cs 프로젝트: OlegGelezcov/Casual
        private void UpdateSilver()
        {
            NumericTextProgress progress = silverText.GetComponent <NumericTextProgress>();

            if (progress == null)
            {
                silverText.text = playerService.silver.ToString();
            }
            else
            {
                progress.SetValue(playerService.silver);
            }
        }
예제 #2
0
파일: HUD.cs 프로젝트: OlegGelezcov/Casual
        private void UpdateGold()
        {
            NumericTextProgress progress = goldText.GetComponent <NumericTextProgress>();

            if (progress == null)
            {
                goldText.text = playerService.gold.ToString();
            }
            else
            {
                progress.SetValue(playerService.gold);
            }
        }