Implement scene transitions

This commit is contained in:
Dries Van Schuylenbergh
2023-04-18 20:16:53 +02:00
parent 2ba62e316f
commit e8de984ba1
121 changed files with 17909 additions and 839 deletions

View File

@@ -0,0 +1,18 @@
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();
}
}