using UnityEngine;
using UnityEngine.Playables;
public class SettingsScreen : MonoBehaviour
{
///
/// Reference to the scene playable director
///
public PlayableDirector directorEnterFromMainMenu;
///
/// Start is called before the first frame update
///
void Start()
{
directorEnterFromMainMenu.Play();
}
}