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