Interface for a joint in a physics system.

物理系统中关节的接口。

interface IJoint {
    destroy(): void;
    getAngularForce(): Vector3;
    getlinearForce(): Vector3;
    isCollision(value: boolean): void;
    isEnable(value: boolean): void;
    isValid(): boolean;
    setBreakForce(value: number): void;
    setBreakTorque(value: number): void;
    setCollider(owner: ICollider): void;
    setConnectedCollider(owner: ICollider): void;
    setConnectedInertiaScale(value: number): void;
    setConnectedMassScale(value: number): void;
    setConnectLocalPos(pos: Vector3): void;
    setInertiaScale(value: number): void;
    setLocalPos(pos: Vector3): void;
    setMassScale(value: number): void;
    setOwner(value: Node): void;
}

层级 (查看层级一览)

实现于

方法

  • 参数

    • value: boolean

      True to enable collision, false to disable.

    返回 void

    Sets whether collision is enabled between the connected bodies.

    设置是否启用连接体之间的碰撞。

  • 参数

    • value: number

      The scale value to set.

    返回 void

    The scale to apply to the inverse inertia of collider0 for resolving this constraint.

    设置应用于连接碰撞体逆惯性的缩放比例,用于解析此约束。

  • 参数

    • value: number

      The scale value to set.

    返回 void

    The scale to apply to the inverse mass of collider 0 for resolving this constraint.

    设置应用于连接碰撞体逆质量的缩放比例,用于解析此约束。

  • 参数

    • value: number

      The scale value to set.

    返回 void

    The scale to apply to the inverse inertia of collider1 for resolving this constraint.

    设置应用于主碰撞体逆惯性的缩放比例,用于解析此约束。

  • 参数

    • value: number

      The scale value to set.

    返回 void

    The scale to apply to the inverse mass of collider 1 for resolving this constraint.

    设置应用于主碰撞体逆质量的缩放比例,用于解析此约束。