Files
Scampz/Assets/Scripts/TitleScreen/TitleScreen.cs
Zenny 7a891a45f1 Add airship level
Fix default spawn issue
TODO: Fix issue with spawning when loading from other scenes
2022-08-30 01:48:01 -07:00

16 lines
333 B
C#

using Scampz.GameJam.Assets.Scripts;
using UnityEngine;
using UnityEngine.SceneManagement;
namespace Scampz.GameJam
{
public class TitleScreen : MonoBehaviour
{
void Update()
{
if (Input.GetButton(InputOptions.Submit))
GameManager.Instance.LoadScene(SceneNames.WorldMap, LoadSceneMode.Single);
}
}
}