1 2 3 4 5 6 7 8 9 10 11 12 13 14
using Godot; using System; [GlobalClass] public partial class ActorDefinition : Resource { [ExportCategory("Visuals")] [Export] public string name = "unnamed"; [ExportCategory("Mechanics")] [Export] public bool blocksMovement = true; }