用于 2D 精灵的刚体物理组件。
The Rigidbody2D class essentially provides the same functionality in 2D that the Rigidbody class provides in 3D. Adding a Rigidbody2D component to a sprite puts in under the control of the physics engine. By itself, this means that the sprite will be affected by gravity and can be controlled from scripts using forces. By adding the appropriate collider component, the sprite will also respond to collisions with other sprites. This behaviour comes entirely from Unity's physics system; very little code is required to get impressive and authentic physical behaviour and allows for "emergent" gameplay that was not explicitly coded into the game.
另请参阅:Rigidbody 类、SpriteRenderer 类、Collider2D 类、Joint2D 类。
angularDrag | 角阻力系数。 |
angularVelocity | 角速度(以度/秒为单位)。 |
attachedColliderCount | 返回附加到该 Rigidbody2D 的 Collider2D 的数量。 |
bodyType | Rigidbody2D 的物理行为类型。 |
centerOfMass | 刚体在本地空间中的质心。 |
collisionDetectionMode | 物理引擎用于检查两个对象是否发生碰撞的方法。 |
constraints | 控制该 Rigidbody2D 的模拟自由度。 |
drag | 阻力系数。 |
freezeRotation | 控制物理是否会更改对象的旋转。 |
gravityScale | 该对象受重力影响的程度。 |
inertia | 刚体的转动惯量。 |
interpolation | 在更新之间使用的物理插值。 |
isKinematic | 该刚体是否应该脱离物理控制? |
mass | Mass of the rigidbody. |
position | 刚体的位置。 |
rotation | 刚体的旋转。 |
sharedMaterial | 应用于附加到该 Rigidbody2D 的所有 Collider2D 的 PhysicsMaterial2D。 |
simulated | 指示物理系统是否应模拟刚体。 |
sleepMode | 刚体最初处于的睡眠状态。 |
useAutoMass | 是否应根据附加碰撞体的 [[Collider2D.density]] 自动计算总刚体 mass? |
useFullKinematicContacts | 是否允许运动/运动和运动/静态碰撞? |
velocity | 刚体的线速度。 |
worldCenterOfMass | 获取刚体在全局空间中的质心。 |
AddForce | 对刚体施加力。 |
AddForceAtPosition | 在空间中的给定位置施加力。 |
AddRelativeForce | 向 rigidbody2D 添加力(相对于其坐标系)。 |
AddTorque | 在刚体的质心处施加扭矩。 |
Cast | 附加到 Rigidbody2D 的所有 Collider2D 形状都将投射到场景中 - 从每个碰撞体的位置开始,忽略附加到同一个 Rigidbody2D 的碰撞体。 |
Distance | 计算 collider 到附加到该 Rigidbody2D 的所有 Collider2D 的最小距离。 |
GetAttachedColliders | 返回附加到该 Rigidbody2D 的所有 Collider2D。 |
GetContacts | 检索附加到该刚体的所有碰撞体的所有接触点。 |
GetPoint | 根据位于刚体全局空间中的点 /point/,获取本地空间点。 |
GetPointVelocity | 点 /Point/(全局空间)处刚体的速度。 |
GetRelativePoint | 根据位于刚体本地空间中的点 /relativePoint/,获取全局空间点。 |
GetRelativePointVelocity | 点 /Point/(本地空间)处刚体的速度。 |
GetRelativeVector | 根据位于刚体本地空间中的向量 /relativeVector/,获取全局空间向量。 |
GetVector | 根据位于刚体全局空间中的向量 /vector/,获取本地空间向量。 |
IsAwake | 刚体是否处于“唤醒”状态? |
IsSleeping | 刚体是否处于“睡眠”状态? |
IsTouching | 检查 collider 是否正在接触附加到该刚体的任何碰撞体。 |
IsTouchingLayers | 检查附加到该刚体的任何碰撞体是否正在接触指定 layerMask 上的任何碰撞体。 |
MovePosition | 将刚体移动到 /position/。 |
MoveRotation | 将刚体旋转到 /angle/(以度为单位)。 |
OverlapCollider | 获取与附加到该 Rigidbody2D 的所有碰撞体重叠的所有碰撞体的列表。 |
OverlapPoint | 检查是否有任何 Rigidbody2D 碰撞体与空间中的某个点重叠。 |
Sleep | 使刚体进入“睡眠”状态。 |
WakeUp | 禁用刚体的“睡眠”状态。 |
gameObject | 此组件附加到的游戏对象。始终将组件附加到游戏对象。 |
tag | 此游戏对象的标签。 |
transform | 附加到此 GameObject 的 Transform。 |
hideFlags | 该对象应该隐藏、随场景一起保存还是由用户修改? |
name | 对象的名称。 |
BroadcastMessage | 调用此游戏对象或其任何子项中的每个 MonoBehaviour 上名为 methodName 的方法。 |
CompareTag | 此游戏对象是否使用 tag 进行了标记? |
GetComponent | 如果游戏对象附加了类型为 type 的组件,则将其返回,否则返回 null。 |
GetComponentInChildren | 使用深度首次搜索返回 GameObject 或其任何子项中类型为 type 的组件。 |
GetComponentInParent | 返回 GameObject 或其任何父项中类型为 type 的组件。 |
GetComponents | 返回 GameObject 中类型为 type 的所有组件。 |
GetComponentsInChildren | 返回 GameObject 或其任何子项中类型为 type 的所有组件。 |
GetComponentsInParent | 返回 GameObject 或其任何父项中类型为 type 的所有组件。 |
SendMessage | 调用此游戏对象中的每个 MonoBehaviour 上名为 methodName 的方法。 |
SendMessageUpwards | 调用此游戏对象中的每个 MonoBehaviour 上或此行为的每个父级上名为 methodName 的方法。 |
GetInstanceID | 返回对象的实例 ID。 |
ToString | Returns the name of the game object. |
Destroy | 删除 GameObject、组件或资源。 |
DestroyImmediate | 立即销毁对象 /obj/。强烈建议您改用 Destroy。 |
DontDestroyOnLoad | 加载新场景时,不自动销毁对象 /target/。 |
FindObjectOfType | 返回第一个类型为 type 的已加载的激活对象。 |
FindObjectsOfType | 返回所有类型为 type 的已加载的激活对象的列表。 |
Instantiate | 克隆 original 对象并返回克隆对象。 |
bool | 该对象是否存在? |
operator != | 比较两个对象是否引用不同的对象。 |
operator == | 比较两个对象引用,判断它们是否引用同一个对象。 |