| | |
| | | [SerializeField] RectTransform m_IosProgressContainer; //显示转圈,ios进度条会导致审核不通过
|
| | | [SerializeField] RectTransform circleImg;
|
| | | [SerializeField] RectTransform m_NetworkContainer;
|
| | | [SerializeField] Text m_NetworkTip;
|
| | | [SerializeField] Slider m_TotalProgressSlider;
|
| | | [SerializeField] Text m_StageDescription;
|
| | | [SerializeField] Text m_IosProgressTip;
|
| | |
| | | {
|
| | | m_NetworkContainer.gameObject.SetActive(false);
|
| | | }
|
| | | m_NetworkTip.text = InitialFunctionConfig.Get("Language").Numerical4;
|
| | |
|
| | | var AppleCheck = InitialFunctionConfig.Get("CheckTime").Numerical1;
|
| | | if (Application.platform == RuntimePlatform.IPhonePlayer && AppleCheck == "1")
|
| | |
| | | }
|
| | | if (ShowCircleView)
|
| | | {
|
| | | m_IosProgressTip.text = StringUtility.Contact(sliderText, (int)(value * 100), "%");
|
| | | m_IosProgressTip.text = StringUtility.Contact(sliderText, " ", (int)(value * 100), "%");
|
| | | //circleImg.Rotate(Vector3.forward, -1800 * Time.deltaTime);
|
| | | }
|
| | | else
|
| | | {
|
| | | m_TotalProgressSlider.value = value;
|
| | | m_StageDescription.text = StringUtility.Contact(sliderText, (int)(value * 100), "%");
|
| | | m_StageDescription.text = StringUtility.Contact(sliderText, " ", (int)(value * 100), "%");
|
| | | }
|
| | |
|
| | | }
|