The btCharacterCollider class is used to handle 3D physics character colliders.

btCharacterCollider 类用于处理3D物理角色碰撞器。

层级 (查看层级一览)

实现

构造函数

属性

_btCollider: any

The underlying Bullet physics collider object.

物理碰撞器对象。

_btColliderShape: btColliderShape

The shape of the Bullet physics collider.

物理碰撞器的形状。

_canCollideWith: number

The collision mask determining which groups this collider can collide with.

决定此碰撞器可以与哪些组碰撞的碰撞掩码。

_collisionGroup: number

The collision group that this collider belongs to.

此碰撞器所属的碰撞组。

_destroyed: boolean = false

Indicates whether the collider has been destroyed.

表示碰撞器是否已被销毁。

_enableProcessCollisions: boolean

Determines if collision processing is enabled for this collider.

决定是否为此碰撞器启用碰撞处理。

_id: number

Unique identifier for the collider.

碰撞器的唯一标识符。

_isSimulate: boolean = false

Indicates whether the collider is currently simulated in the physics world.

表示碰撞器是否已在物理世界中生效。

_isTrigger: boolean

Whether the collider is a trigger.

是否为触发器。

_physicsManager: btPhysicsManager

The physics manager handling this collider.

处理此碰撞器的物理管理器。

_transform: Transform3D

The Transform3D component associated with this collider.

与此碰撞器关联的Transform3D组件。

The type of the collider (static, dynamic, or kinematic).

碰撞器的类型(静态、动态或运动学)。

active: boolean = false

Indicates whether the collider can be enabled. It's true only when placed in the scene and the physics component is effective.

是否可以启用,只有放入scene中且物理组件生效才会为true。

The physics collider component associated with this collider.

与此碰撞器关联的物理碰撞器组件。

inPhysicUpdateListIndex: number = -1

update list index.

更新列表中的索引。

owner: Sprite3D

The Sprite3D object that owns this collider.

拥有此碰撞器的Sprite3D对象。

_addUpdateList: boolean = true
_colliderID: number = 0
TYPE_DYNAMIC: number = 1

Dynamic rigid body type. The rigid body can be moved through forces and impulses, and there's no need to modify the movement transformation.

刚体类型_动态。 可以通过力和冲量移动刚体,并且不需要修改移动变换。

TYPE_KINEMATIC: number = 2

Kinematic rigid body type. The rigid body can be moved, and the physics engine will automatically handle dynamic interactions. Note: It will not produce dynamic interactions with static or other types of rigid bodies.

刚体类型_运动。 可以移动刚体,物理引擎会自动处理动态交互。 注意:和静态或其他类型刚体不会产生动态交互。

TYPE_STATIC: number = 0

Static rigid body type. Set to a rigid body that will never move, and the engine will not automatically update it. If you intend to move physics objects, it is recommended to use TYPE_KINEMATIC.

刚体类型_静态。 设定为永远不会移动刚体,引擎也不会自动更新。 如果你打算移动物理,建议使用TYPE_KINEMATIC。

方法