Physics2DOption is used to configure default parameters for 2D physics

Physics2DOption 用于配置2D物理的默认参数

构造函数

属性

allowSleeping: boolean = false

Sets whether sleeping is allowed. Allowing sleep can improve stability and performance, but it usually comes at the cost of accuracy.The default is false.

设置是否允许休眠。允许休眠可以提高稳定性和性能,但通常会牺牲准确性。默认为否。

customUpdate: boolean = false

Indicates whether the update is performed externally.The default is false.

表示更新是否由外部执行。默认为否。

debugDraw: boolean = true

Whether to enable physics drawing.The default is true.

是否开启物理绘制。默认为是。

drawAABB: boolean = false

Whether to draw the Bounding Box.The default is false.

是否绘制包围盒。默认为否。

drawCenterOfMass: boolean = false

Whether to draw the center of mass.The default is false.

是否绘制质心。默认为否。

drawJoint: boolean = true

Whether to draw joints.The default is true.

是否绘制关节。默认为是。

drawShape: boolean = true

Whether to draw shapes.The default is true.

是否绘制形状。默认为是。

gravity: { x: number; y: number } = ...

Gravity acceleration, with a default value of 9.8, corresponding to 9.8 meters per second squared (m/s²) in the real world.

重力加速度,默认的重力加速度值为 9.8,对应于现实世界中的 9.8米/秒²(m/s²) 。

pixelRatio: number = 50

The conversion ratio between rendering pixels and physical units. By default, 1 length unit in the physics engine corresponds to 50 pixels. Modifying this value changes the number of pixels that correspond to 1 length unit in the physics engine.

渲染像素和物理单位的转换比率,物理引擎中的1长度单位默认转换为50个像素,修改此处可改变物理引擎1长度单位对应的渲染像素值。

positionIterations: number = 3

The number of position iterations. Increasing this number will improve accuracy but reduce performance.The default is 3.

位置迭代次数。增大此数字会提高精度,但会降低性能。默认为3。

velocityIterations: number = 8

The number of velocity iterations. Increasing this number will improve accuracy but reduce performance.The default is 8.

旋转迭代次数。增大此数字会提高精度,但会降低性能。默认为8。