/
crypt
/
NumbersPlay
Обзор
Документация
Войти
/
crypt
/
NumbersPlay
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Assets/Code/GameUIView/RadialBarView.cs
21 строка
381 B
Crypt
start
16 ноя 2025, 14:28
16 ноя 2025, 14:28
1482007
Код
Авторство
О чём код?
using System; using UnityEngine; using UnityEngine.UI; namespace Code { public class RadialBarView : MonoBehaviour { private Image _radialBar; private void Awake() { _radialBar = GetComponent<Image>(); } public void UpdateBar(float progress) { _radialBar.fillAmount = progress; } } }