OnRemoteIdentifierUpdate
Usage
- Return a non-null value to override default behavior
Example Autogenerated
csharp
private void OnRemoteIdentifierUpdate( PoweredRemoteControlEntity instance, string newID )
{
Puts( "OnRemoteIdentifierUpdate works!" );
}
Location
- PoweredRemoteControlEntity::UpdateIdentifier(string newID, bool clientSend)
csharp
public void UpdateIdentifier(string newID, bool clientSend = false)
{
if (Interface.CallHook("OnRemoteIdentifierUpdate", this, newID) != null)
{
return;
}
string arg_16_0 = this.rcIdentifier;
if (base.isServer)
//---