2025-06-03 02:42:28 -04:00
|
|
|
using System;
|
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
2025-06-06 10:14:55 -04:00
|
|
|
namespace Ichni.UI
|
2025-06-03 02:42:28 -04:00
|
|
|
{
|
2025-06-06 10:14:55 -04:00
|
|
|
public class StartUIPage : UIPageBase
|
2025-06-03 02:42:28 -04:00
|
|
|
{
|
|
|
|
|
public AudioContainer audioContainer;
|
|
|
|
|
|
|
|
|
|
private void Awake()
|
|
|
|
|
{
|
|
|
|
|
audioContainer = GetComponent<AudioContainer>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void TouchToStart()
|
|
|
|
|
{
|
|
|
|
|
audioContainer.PlaySoundFX("TouchToStart");
|
2025-06-06 10:14:55 -04:00
|
|
|
FadeOut();
|
|
|
|
|
ChapterSelectionManager.instance.chapterSelectionUIPage.FadeIn();
|
2025-06-03 02:42:28 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|