构造函数

属性

category: number = 1

[Read-only] Collision category, specified using powers of 2, with 32 different collision categories available.

[只读] 碰撞类别,使用2的幂次方值指定,有32种不同的碰撞类别可用。

group: number = 0

[Read-only] Specifies the collision group to which the body belongs, default is 0, the collision rules are as follows:

  1. If the group values of two objects are equal:
    • If the group value is greater than zero, they will always collide.
    • If the group value is less than zero, they will never collide.
    • If the group value is equal to 0, then rule 3 is used.
  2. If the group values are not equal, then rule 3 is used.
  3. Each rigidbody has a category, this property receives a bit field, the range is the power of 2 in the range of [1,2^31]. Each rigidbody also has a mask category, which specifies the sum of the category values it collides with (the value is the result of bitwise AND of all categories).

[只读] 指定了该主体所属的碰撞组,默认为0,碰撞规则如下:

  1. 如果两个对象 group 相等:
    • group 值大于零,它们将始终发生碰撞。
    • group 值小于零,它们将永远不会发生碰撞。
    • group 值等于0,则使用规则3。
  2. 如果 group 值不相等,则使用规则3。
  3. 每个刚体都有一个 category 类别,此属性接收位字段,范围为 [1,2^31] 范围内的2的幂。 每个刚体也都有一个 mask 类别,指定与其碰撞的类别值之和(值是所有 category 按位 AND 的值)。
id: number

识别用索引

mask: number = -1

[Read-only] Specifies the category of collision bit mask, the result of category bitwise operation. Each rigidbody also has a mask category, which specifies the sum of the category values it collides with (the value is the result of bitwise AND of all categories).

[只读] 指定冲突位掩码碰撞的类别,category 位操作的结果。 每个刚体也都有一个 mask 类别,指定与其碰撞的类别值之和(值是所有 category 按位 AND 的值)。

访问器