namespace Unity.VisualScripting { /// /// Called every frame. /// [UnitCategory("Events/Lifecycle")] [UnitOrder(3)] [UnitTitle("On Update")] public sealed class Update : MachineEventUnit { protected override string hookName => EventHooks.Update; } }