This repository has been archived on 2026-01-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
AW_2025/Assets/Scripts/UI/Scene/UI_Scene.cs
2025-02-24 15:18:12 +09:00

17 lines
271 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Noah;
public class UI_Scene : UI_Base
{
public override bool Init()
{
if (base.Init() == false)
return false;
Managers.UI.SetCanvas(gameObject, false);
return true;
}
}