OnIORefCleared
Usage
- No return behavior
Example Autogenerated
csharp
private void OnIORefCleared( IOEntity.IORef instance, IOEntity obj )
{
Puts( "OnIORefCleared works!" );
}Location
- IOEntity/IORef::Clear()
csharp
public void Clear()
{
IOEntity obj = ioEnt;
ioEnt = null;
entityRef.Set(null);
Interface.CallHook("OnIORefCleared", this, obj);
}