Interface for collider.

碰撞器的接口。

interface ICollider {
    active: boolean;
    component: PhysicsColliderComponent;
    inPhysicUpdateListIndex: number;
    owner: Node;
    destroy(): void;
    getCapable(value: number): boolean;
    setBounceCombine(value: PhysicsCombineMode): void;
    setBounciness(value: number): void;
    setCanCollideWith(value: number): void;
    setColliderShape(shape: IColliderShape): void;
    setCollisionGroup(value: number): void;
    setDynamicFriction(value: number): void;
    setEventFilter(events: string[]): void;
    setfriction(value: number): void;
    setFrictionCombine(value: PhysicsCombineMode): void;
    setOwner(node: Node): void;
    setRollingFriction(value: number): void;
    setStaticFriction(value: number): void;
    transformChanged(flag: number): void;
}

层级 (查看层级一览)

实现于

属性

active: boolean

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

Index in the physics update list.

在物理更新列表中的索引。

owner: Node

The owner node of the collider.

碰撞器所属的节点。

方法