OnEngineStopped
Usage
- No return behavior
Example Autogenerated
csharp
private void OnEngineStopped( )
{
Puts( "OnEngineStopped works!" );
}
Location
- VehicleEngineController<T>::StopEngine()
csharp
//---
return;
}
this.CancelEngineStart();
this.owner.SetFlag(BaseEntity.Flags.On, false, false, true);
this.owner.SetFlag(this.engineStartingFlag, false, false, true);
Interface.CallHook("OnEngineStopped", this.owner);
}