19 lines
401 B
C#
19 lines
401 B
C#
using UnityEngine;
|
|
using UnityEngine.Playables;
|
|
|
|
public class SettingsScreen : MonoBehaviour
|
|
{
|
|
/// <summary>
|
|
/// Reference to the scene playable director
|
|
/// </summary>
|
|
public PlayableDirector directorEnterFromMainMenu;
|
|
|
|
/// <summary>
|
|
/// Start is called before the first frame update
|
|
/// </summary>
|
|
void Start()
|
|
{
|
|
directorEnterFromMainMenu.Play();
|
|
}
|
|
}
|