OnOutputUpdate
Usage
- Return a non-null value to override default behavior
Example Autogenerated
csharp
private void OnOutputUpdate( IOEntity instance )
{
Puts( "OnOutputUpdate works!" );
}
Location
- IOEntity::UpdateOutputs()
csharp
public virtual void UpdateOutputs()
{
if (Interface.CallHook("OnOutputUpdate", this) != null)
{
return;
}
if (!this.ShouldUpdateOutputs())
{
//---