Files
ichni_Official/Assets/Scripts/UI/StartPage/StartUIPage.cs
SoulliesOfficial 70b2a43824 update
2025-08-22 14:54:40 -04:00

25 lines
577 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Ichni.UI
{
public class StartUIPage : UIPageBase
{
public AudioContainer audioContainer;
protected override void Awake()
{
base.Awake();
audioContainer = GetComponent<AudioContainer>();
}
public void TouchToStart()
{
audioContainer.PlaySoundFX("TouchToStart");
FadeOut();
ChapterSelectionManager.instance.chapterSelectionUIPage.FadeIn();
}
}
}