选章节

This commit is contained in:
SoulliesOfficial
2025-06-09 04:52:14 -04:00
parent db4d131192
commit 27529d44dc
150 changed files with 15226 additions and 6014 deletions

View File

@@ -0,0 +1,25 @@
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Events;
namespace Ichni.UI
{
public class WideScreenUI : MonoBehaviour
{
public UnityAction wideScreenAction;
private void Start()
{
if (!UIManager.instance.IsWideScreen())
{
gameObject.SetActive(false);
}
else
{
wideScreenAction.Invoke();
}
}
}
}