Skip to content

OnDigitalClockRingStop

Usage

  • Return a non-null value to override default behavior

Example Autogenerated

csharp
private void OnDigitalClockRingStop( DigitalClock instance )
{
    Puts( "OnDigitalClockRingStop works!" );
}

Location

  • DigitalClock::StopRinging()
csharp
private void StopRinging()
{
	if (Interface.CallHook("OnDigitalClockRingStop", this) != null)
	{
		return;
	}
	this.isRinging = false;
	base.ClientRPC(RpcTarget.NetworkGroup("RPC_StopRinging"));
//---

Released under the MIT License.