The pxPhysicsManager class is used to implement physics management.

pxPhysicsManager 类用于实现物理管理。

实现

构造函数

属性

_dynamicUpdateList: PhysicsUpdateList = ...
_pxcontrollerManager: any
enableCCD: boolean = false

Whether to enable Continuous Collision Detection (CCD).

是否启用连续碰撞检测(CCD)。

fixedTime: number = ...

Fixed time step for physics simulation.

物理模拟的固定时间步长。

方法

  • 参数

    • ray: Ray

      The ray to cast.

    • outHitResult: HitResult

      The result of the raycast.

    • distance: number = 1000000

      The maximum distance of the raycast.

    • collisonGroup: number = ...

      The collision group of the ray.

    • collisionMask: number = ...

      The collision mask of the ray.

    返回 boolean

    Whether the raycast hit anything.

    Performs a ray cast in the physics world.Returns the first hit object.

    执行一次射线检测,返回第一个与射线相交的碰撞体信息。

  • 参数

    • ray: Ray

      The ray to cast.

    • out: HitResult[]

      An array to store all hit results.

    • distance: number = 1000000

      The maximum distance of the raycast.

    • collisonGroup: number = ...

      The collision group of the ray.

    • collisionMask: number = ...

      The collision mask of the ray.

    返回 boolean

    Whether the raycast hit anything.

    Performs a ray cast in the physics world.Returns all hit objects.

    执行一次射线检测,返回所有与射线相交的碰撞体信息。

  • 参数

    • dataCallBack: any

      The collision data callback.

    • eventType: string

      The type of collision event.

    • isTrigger: boolean = false

      Whether the collision is a trigger event.

    返回 void

    Set collision data to the appropriate map based on the event type.

    根据事件类型将碰撞数据设置到适当的映射中。

  • 参数

    • shape: pxColliderShape

      The shape to cast.

    • fromPosition: Vector3

      The starting position of the shape.

    • toPosition: Vector3

      The ending position of the shape.

    • out: HitResult

      The result of the shape cast.

    • fromRotation: Quaternion = ...

      The starting rotation of the shape.

    • toRotation: Quaternion = ...

      The ending rotation of the shape.

    • collisonGroup: number = ...

      The collision group of the shape.

    • collisionMask: number = ...

      The collision mask of the shape.

    • allowedCcdPenetration: number = 0.0

      The allowed continuous collision detection penetration.

    返回 boolean

    Whether the shape cast hit anything.

    Performs a shape cast. Returns the first hit object.

    执行形状射线检测,返回第一个与射线相交的碰撞体信息。

  • 参数

    • shape: pxColliderShape

      The shape to cast.

    • fromPosition: Vector3

      The starting position of the shape.

    • toPosition: Vector3

      The ending position of the shape.

    • out: HitResult[]

      An array to store all hit results.

    • fromRotation: Quaternion = ...

      The starting rotation of the shape.

    • toRotation: Quaternion = ...

      The ending rotation of the shape.

    • collisonGroup: number = ...

      The collision group of the shape.

    • collisionMask: number = ...

      The collision mask of the shape.

    • allowedCcdPenetration: number = 0.0

      The allowed continuous collision detection penetration.

    返回 boolean

    Whether the shape cast hit anything.

    Performs a shape cast. Returns all hit objects.

    执行形状投射,返回所有与射线相交的碰撞体信息。