Skip to content

OnSupplyDropLanded

Usage

  • No return behavior

Example Autogenerated

csharp
private void OnSupplyDropLanded( SupplyDrop instance )
{
    Puts( "OnSupplyDropLanded works!" );
}

Location

  • SupplyDrop::OnCollisionEnter(UnityEngine.Collision collision)
csharp
//---
	if (flag)
	{
		this.RemoveParachute();
		this.MakeLootable();
	}
	Interface.CallHook("OnSupplyDropLanded", this);
}

Released under the MIT License.