24 lines
548 B
C#
24 lines
548 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Ichni.UI
|
|
{
|
|
public class StartUIPage : UIPageBase
|
|
{
|
|
public AudioContainer audioContainer;
|
|
|
|
private void Awake()
|
|
{
|
|
audioContainer = GetComponent<AudioContainer>();
|
|
}
|
|
|
|
public void TouchToStart()
|
|
{
|
|
audioContainer.PlaySoundFX("TouchToStart");
|
|
FadeOut();
|
|
ChapterSelectionManager.instance.chapterSelectionUIPage.FadeIn();
|
|
}
|
|
}
|
|
} |