Skip to content

OnDigitalClockRingStop

Usage

  • Return a non-null value to override default behavior

Example Autogenerated

csharp
private object OnDigitalClockRingStop( DigitalClock instance )
{
    Puts( "OnDigitalClockRingStop works!" );
    return null;
}

Location

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

Released under the MIT License.