2025-07-08 10:46:31 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|