namespace Unity.VisualScripting { /// /// Called the first time a machine is enabled before any update method. /// [UnitCategory("Events/Lifecycle")] [UnitOrder(2)] [UnitTitle("On Start")] public sealed class Start : MachineEventUnit { protected override string hookName => EventHooks.Start; } }