Files
ichni_Official/Assets/Scripts/Game/UI/GameLoadingCanvas.cs
SoulliesOfficial 150ef744e8 更新
2025-07-08 14:28:40 -04:00

19 lines
399 B
C#

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();
}
}
}