OnDigitalClockRing
Usage
- Return a non-null value to override default behavior
Example Autogenerated
csharp
private void OnDigitalClockRing( DigitalClock instance )
{
Puts( "OnDigitalClockRing works!" );
}
Location
- DigitalClock::Ring()
csharp
private void Ring()
{
if (Interface.CallHook("OnDigitalClockRing", this) != null)
{
return;
}
this.isRinging = true;
base.ClientRPC(RpcTarget.NetworkGroup("RPC_StartRinging"));
//---