OnDemoRecordingStopped
Usage
- No return behavior
Example Autogenerated
csharp
private void OnDemoRecordingStopped( string RecordFilename, BasePlayer instance )
{
Puts( "OnDemoRecordingStopped works!" );
}
Location
- BasePlayer::StopDemoRecording()
csharp
//---
return;
}
Debug.Log(this.ToString() + " recording stopped: " + this.net.connection.RecordFilename);
this.net.connection.StopRecording();
base.CancelInvoke(new Action(this.MonitorDemoRecording));
Interface.CallHook("OnDemoRecordingStopped", this.net.connection.recordFilename, this);
}