Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


body

The first Rigidbody or ArticulationBody in the pair.
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.PhysicsModule
public Component body { get; }

Remarks

Use with the as keyword to determine the actual type of the component.

Examples

using UnityEngine;public class Example{ public Rigidbody ExtractRigidbodyFromContactPairHeader(ContactPairHeader header) { return header.body as Rigidbody; } public ArticulationBody ExtractArticulationBodyFromContactPairHeader(ContactPairHeader header) { return header.body as ArticulationBody; }}