1 2 3 4 5 6 7 8 9 10 11 12
using Godot; using System; public partial class Global : Node { public static Global Instance { get; private set; } public static Global _; //GAME NODES (might put in a map if needed) public static WorldCamera camera; public static Node3D player; }