The btPhysicsManager class is the core class for managing the Bullet physics engine.

btPhysicsManager 类是用于管理 Bullet 物理引擎的核心类。

实现

属性

_characters: btCharacterCollider[] = []
ccdSphereRadius: number = 0.0001

The sphere radius for continuous collision detection.

连续碰撞检测的球体半径。

ccdThreshold: number = 0.0001

The threshold for continuous collision detection.

连续碰撞检测的阈值。

dt: number = ...

The delta time used in physics calculations, default is 1/60 second.

物理计算中使用的时间间隔,默认为 1/60 秒。

enableCCD: boolean = false

Whether to enable continuous collision detection.

是否开启连续碰撞检测。

fixedTimeStep: number = ...

The interval time of the physics simulator frame. Reducing fixedTimeStep can increase simulation precision. The default value is 1.0 / 60.0.

物理模拟器帧的间隔时间:通过减少fixedTimeStep可增加模拟精度,默认是1.0 / 60.0。

maxSubSteps: number = 1

The maximum number of sub-steps used by the physics engine in one frame to compensate for deceleration. This is the maximum number of simulations allowed per frame. If the engine runs slowly, this number may need to be increased,otherwise the simulator will lose "time". It's crucial that the engine interval time is less than maxSubSteps * fixedTimeStep.

物理引擎在一帧中用于补偿减速的最大次数:模拟器每帧允许的最大模拟次数,如果引擎运行缓慢,可能需要增加该次数,否则模拟器会丢失“时间",引擎间隔时间小于maxSubSteps*fixedTimeStep非常重要。

方法

  • 返回 void

    PerformanceDefine.T_PhysicsEvent

    This method only sends events to objects, it doesn't call collision functions for each component individually.Components need to listen to events if they want to respond to collisions.

    这个只是给对象发送事件,不会挨个组件调用碰撞函数。组件要响应碰撞的话,要通过监听事件。

  • 参数

    • ray: Ray

      The ray to cast.

    • outHitResult: HitResult

      The hit result object to store the result.

    • distance: number = 2147483647

      The maximum distance of the ray cast.

    • collisonGroup: number = Physics3DUtils.COLLISIONFILTERGROUP_ALLFILTER

      The collision group of the ray.

    • collisionMask: number = Physics3DUtils.COLLISIONFILTERGROUP_ALLFILTER

      The collision mask of the ray.

    返回 boolean

    Whether the ray 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 = 2147483647

      The maximum distance of the ray cast.

    • collisonGroup: number = Physics3DUtils.COLLISIONFILTERGROUP_ALLFILTER

      The collision group of the ray.

    • collisionMask: number = Physics3DUtils.COLLISIONFILTERGROUP_ALLFILTER

      The collision mask of the ray.

    返回 boolean

    Whether the ray hit anything.

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

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

  • 参数

    • shape: btColliderShape

      The shape to cast.

    • fromPosition: Vector3

      The starting position of the shape.

    • toPosition: Vector3

      The ending position of the shape.

    • out: HitResult

      The hit result object to store the result.

    • fromRotation: Quaternion = null

      The starting rotation of the shape.

    • toRotation: Quaternion = null

      The ending rotation of the shape.

    • collisonGroup: number = Physics3DUtils.COLLISIONFILTERGROUP_ALLFILTER

      The collision group of the shape.

    • collisionMask: number = Physics3DUtils.COLLISIONFILTERGROUP_ALLFILTER

      The collision mask of the shape.

    • allowedCcdPenetration: number = 0.0

      The allowed continuous collision detection penetration.

    返回 boolean

    Whether hit anything.

    Performs a shape cast. Returns the first hit object.

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

  • 参数

    • shape: btColliderShape

      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 = null

      The starting rotation of the shape.

    • toRotation: Quaternion = null

      The ending rotation of the shape.

    • collisonGroup: number = Physics3DUtils.COLLISIONFILTERGROUP_ALLFILTER

      The collision group of the shape.

    • collisionMask: number = Physics3DUtils.COLLISIONFILTERGROUP_ALLFILTER

      The collision mask of the shape.

    • allowedCcdPenetration: number = 0.0

      The allowed continuous collision detection penetration.

    返回 boolean

    Whether hit anything.

    Performs a shape cast. Returns all hit objects.

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

  • 参数

    • pos: Vector3

      The center position of the sphere query.

    • radius: number

      The radius of the sphere query.

    • result: ICollider[]

      An array to store the found colliders.

    • collisionmask: number

      The collision mask to filter the query results.

    返回 void

    Performs a sphere query to find colliders within a specified radius from a given position.

    执行球体查询,查找给定位置指定半径内的碰撞体。