ProjectDDD/Assets/_DDD/_Scripts/Controllers/TitleSystem.cs
2025-07-08 19:46:31 +09:00

19 lines
359 B
C#

using UnityEngine;
namespace DDD
{
public class TitleSystem : MonoBehaviour
{
private GameObject _titlePanel;
private void Awake()
{
_titlePanel = GameObject.Find("Uis/TitleCanvas/TitlePanel").gameObject;
}
private void Start()
{
_titlePanel.SetActive(true);
}
}
}