Files
ichni_Official/Assets/Scripts/Game/UI/GameLoadingCanvas.cs

19 lines
399 B
C#
Raw Normal View History

2025-07-08 14:28:40 -04:00
using System.Collections;
using System.Collections.Generic;
using Ichni.UI;
using Michsky.MUIP;
using UnityEngine;
namespace Ichni.RhythmGame.UI
{
public class GameLoadingCanvas : UIPageBase
{
public ProgressBar progressBar;
public void SetProgress(float value)
{
progressBar.currentPercent = value;
progressBar.UpdateUI();
}
}
}