UI 생성 설정 기능 개발 및 UI 오류 수정
This commit is contained in:
18
Assets/NewStudioJYM/Scripts/Panel_LoggingModal.cs
Normal file
18
Assets/NewStudioJYM/Scripts/Panel_LoggingModal.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using UnityEngine;
|
||||
using XRLib.UI;
|
||||
|
||||
namespace XED
|
||||
{
|
||||
public class Panel_LoggingModal : PanelBase
|
||||
{
|
||||
public void Open()
|
||||
{
|
||||
SetActive(true);
|
||||
}
|
||||
|
||||
public void Close()
|
||||
{
|
||||
SetActive(false);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user