supervisor-simulator/scripts/GameManager.cs
2024-11-30 00:57:01 +08:00

24 lines
685 B
C#

using Godot;
using System;
public partial class GameManager : Node
{
/// <summary>
/// Indicates if the game is currently in tutorial mode.
/// </summary>
public static bool IsTutorial { get; private set; }
public static string NextScene { get; set; } = null;
public static readonly Resource Arrow2x = ResourceLoader.Load("res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_f.png");
// Called when the node enters the scene tree for the first time.
public override void _Ready()
{
Input.SetCustomMouseCursor(Arrow2x);
}
// Called every frame. 'delta' is the elapsed time since the previous frame.
public override void _Process(double delta)
{
}
}