2D Physics Engine

2D物理引擎

层级 (查看层级一览)

构造函数

属性

访问器

  • get allowSleeping(): boolean

    返回 boolean

    Whether the engine is allowed to sleep. Allowing the engine to sleep can improve stability and performance, but it usually comes at the cost of accuracy.

    引擎是否允许休眠。允许引擎休眠可以提高稳定性和性能,但通常会牺牲准确性。

  • set allowSleeping(value: boolean): void

    参数

    • value: boolean

    返回 void

  • set drawAABB(enable: boolean): void

    参数

    • enable: boolean

    返回 void

    Whether to draw the AABB of physics objects.

    是否绘制物理对象的包围盒。

  • set drawCenterOfMass(enable: boolean): void

    参数

    • enable: boolean

    返回 void

    Whether to draw the center of mass of physics objects.

    是否绘制物理对象的质心。

  • set drawJoint(enable: boolean): void

    参数

    • enable: boolean

    返回 void

    Whether to draw the joints of physics objects.

    是否绘制物理对象的关节。

  • set drawPair(enable: boolean): void

    参数

    • enable: boolean

    返回 void

    Whether to draw the collision pairs of the physics object.

    是否绘制物理对象碰撞对。

  • get gravity(): any

    返回 any

    The gravity of the physics world. The default value is {x: 0, y: 9.8}. Modifying the y direction to make the gravity upward can be done by setting gravity.y to -9.8 directly.

    物理世界的重力环境。默认值为 {x: 0, y: 9.8}。 如果要修改y方向使重力方向向上,可以直接设置 gravity.y 为 -9.8。

  • set gravity(value: Vector2): void

    参数

    返回 void

  • get worldRoot(): Sprite

    返回 Sprite

    The root container of the physics world. It serves as the coordinate system for the physics world and is used for coordinate transformations. The default value is the stage. Setting a specific container allows for the collective movement of physical objects while keeping the physics world unchanged. Note that translation will only occur once when setting worldRoot. For other situations, use it in conjunction with the updatePhysicsByWorldRoot function.

    物理世界的根容器,它作为物理世界的坐标系,用于坐标变换,默认值是舞台(stage)。 设置特定的容器后,可以整体移动物理对象,同时保持物理世界的坐标不变。 注意,只有在设置 worldRoot 时才会平移一次,在其他情况下,请配合使用 updatePhysicsByWorldRoot 函数。

  • set worldRoot(value: Sprite): void

    参数

    返回 void

方法

  • 返回 Promise<void>

    Enables the physics world. This method initializes the physics engine and starts the simulation.

    开启物理世界。此方法初始化物理引擎并启动模拟。

  • 参数

    • type: string

      The type of event.

    • 可选data: any

      (Optional) Data to pass to the callback. If multiple parameters p1, p2, p3, ... need to be passed, use an array structure such as [p1, p2, p3, ...]. If a single parameter p needs to be passed and p is an array, use a structure such as [p]. For other single parameters p, you can directly pass parameter p. If data is Event.EMPTY, it means passing an Event object to the callback function. Note that it is not passing Event.TEMP, but an independent Event object.

    返回 boolean

    True if there are listeners for this event type, false otherwise.

    Dispatch an event.

    派发事件。

  • 参数

    • type: string

      The type of event.

    返回 boolean

    True if a listener of the specified type is registered, false otherwise.

    Check if the EventDispatcher object has any listeners registered for a specific type of event.

    检查 EventDispatcher 对象是否为特定事件类型注册了任何侦听器。

  • 参数

    • type: string

      The type of event.

    • listener: Function

      The listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知。

  • 参数

    • type: string

      The type of event.

    • caller: any

      The execution scope of the event listener function.

    • listener: Function

      The listener function.

    • 可选args: any[]

      (Optional) The callback parameters of the event listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知。

  • 参数

    • type: string

      The type of event.

    • listener: Function

      The listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications. This event listener responds once and is automatically removed after the first call.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知,此侦听事件响应一次后自动移除。

  • 参数

    • type: string

      The type of event.

    • caller: any

      The execution scope of the event listener function.

    • listener: Function

      The listener function.

    • 可选args: any[]

      (Optional) The callback parameters of the event listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications. This event listener responds once and is automatically removed after the first call.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知,此侦听事件响应一次后自动移除。

  • 返回 void

    Starts the physics world. This method is called after the physics engine is initialized.

    开启物理世界。此方法在物理引擎初始化后被调用。

  • 返回 void

    Manually triggers an update of the physics world after setting the worldRoot.

    在设定 worldRoot 后,手动触发物理世界的更新。