2025-05-07 12:20:55 +09:00
|
|
|
using UnityEngine;
|
|
|
|
|
using UnityEngine.UI;
|
|
|
|
|
using XRLib.UI;
|
|
|
|
|
|
2025-05-20 16:25:58 +09:00
|
|
|
namespace Studio.UI
|
2025-05-07 12:20:55 +09:00
|
|
|
{
|
|
|
|
|
public class Panel_StartImage : PanelBase
|
|
|
|
|
{
|
|
|
|
|
public RawImage image;
|
|
|
|
|
public Button Button_Open;
|
|
|
|
|
|
|
|
|
|
public override void AfterAwake()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
2025-05-12 18:11:43 +09:00
|
|
|
|
|
|
|
|
public void Open()
|
|
|
|
|
{
|
|
|
|
|
SetActive(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Close()
|
|
|
|
|
{
|
|
|
|
|
SetActive(false);
|
|
|
|
|
}
|
2025-05-07 12:20:55 +09:00
|
|
|
}
|
|
|
|
|
}
|