19 lines
354 B (Stored with Git LFS)
C#
19 lines
354 B (Stored with Git LFS)
C#
using UnityEngine;
|
|
|
|
namespace DDD
|
|
{
|
|
public class TitleSystem : MonoBehaviour
|
|
{
|
|
private GameObject _titlePanel;
|
|
|
|
private void Awake()
|
|
{
|
|
_titlePanel = GameObject.Find("Uis/Canvas/TitlePanel").gameObject;
|
|
}
|
|
|
|
private void Start()
|
|
{
|
|
_titlePanel.SetActive(true);
|
|
}
|
|
}
|
|
} |