diff --git a/Assets/00.StaryEvoTools/Runtime/PanelTools/ProgressBarPanel.cs b/Assets/00.StaryEvoTools/Runtime/PanelTools/ProgressBarPanel.cs index 7dff52e..042acb1 100644 --- a/Assets/00.StaryEvoTools/Runtime/PanelTools/ProgressBarPanel.cs +++ b/Assets/00.StaryEvoTools/Runtime/PanelTools/ProgressBarPanel.cs @@ -14,7 +14,7 @@ namespace Main _fill = this.transform.Find("Fill").GetComponent(); _fillText = _fill.transform.Find("FillText").GetComponent(); _fillMessage = _fill.transform.Find("FillMessage").GetComponent(); - _fill.fillAmount = 0; + //_fill.fillAmount = 0; _fillText.text = "0%"; } @@ -22,7 +22,7 @@ namespace Main public async void SetProgressBarValue(string message, float value) { this.gameObject.SetActive(true); - _fill.fillAmount = value; + //_fill.fillAmount = value; _fillMessage.text = message; _fillText.text = $"{value:P0}"; if (value >= 1) diff --git a/Assets/00.StaryEvoTools/package.json b/Assets/00.StaryEvoTools/package.json index e1cd2cb..544451a 100644 --- a/Assets/00.StaryEvoTools/package.json +++ b/Assets/00.StaryEvoTools/package.json @@ -1,6 +1,6 @@ { "name": "com.staryevo.tools", - "version": "1.1.16", + "version": "1.1.17", "displayName": "00.StaryEvo.Tools", "description": "This is an Framework package(后台服务器版本,端口9527)", "unity": "2021.3",