Config is used to set some global parameters. If you need to change them, please set them before initializing the engine.

Config类用于配置一些全局参数。如需更改,请在初始化引擎之前设置。

构造函数

属性

animationInterval: number = 50

Default playback interval for 2D animation, in milliseconds.

2D动画 Animation 的默认播放时间间隔,单位为毫秒。

defaultFont: string = "Arial"

Default font, default is Arial

默认文本字体,默认为Arial

defaultFontSize: number = 12

Default text size, default is 12

默认文本大小,默认为12

destroyResourceImmediatelyDefault: boolean = true

Whether to immediately delete resources when the reference parameter is 0. If not immediate deletion, please call DestrotyUnUse

资源引用参数为0是否立即删除资源,如果不立即删除请调用DestrotyUnUse

enableUniformBufferObject: boolean = true

Whether to enable UniformBuffer

是否启用UniformBuffer

fixedFrames: boolean = true

Whether to use a fixed frame rate for rendering and updates.

  • When true: Rendering and logic updates are limited to the frame rate defined by Config.FPS. Ensures consistent application speed across different devices.
  • When false: Updates occur on every requestAnimationFrame callback. Can lead to varying application speeds on different devices.

是否使用固定帧率进行渲染和更新。

  • 当为 true 时:渲染和逻辑更新被限制在由 Config.FPS 定义的帧率内。确保在不同设备上应用程序运行速度一致。
  • 当为 false 时:在每次 requestAnimationFrame 回调时进行更新。可能导致在不同设备上应用程序运行速度不同。
fontFamilyMap: any = ...

On iOS, some fonts may not be found. The engine provides font mapping functionality. For example, by default, "黑体" is mapped to "黑体-简". More mappings can be added.

在iOS下,一些字体会找不到,引擎提供了字体映射功能,比如默认会把 "黑体" 映射为 "黑体-简",更多映射,可以自己添加

FPS: number = 60

FPS limit

限制FPS

isAlpha: boolean = false

Set whether the canvas is transparent, only effective for 2D(WebGL) and 3D.

设置画布是否透明,只对2D(WebGL)、3D有效。

isAntialias: boolean = true

Canvas setting for anti-aliasing, only effective for 2D(WebGL). 3D anti-aliasing is controlled on the camera or RT.

画布设置是否抗锯齿,只对2D(WebGL)有效,3D抗锯齿在camera或RT上面控制。

isDepth: boolean = false

Set whether the canvas contains depth

设置画布是否包含深度

isfailIfMajorPerformanceCaveat: boolean = false

Boolean value indicating whether to create this context in a system with low performance

表明在一个系统性能低的环境是否创建该上下文

isStencil: boolean = true

Set whether to enable stencil buffer for the canvas, only effective for 2D(WebGL) and 3D.

设置画布的是否开启模板缓冲,只对2D(WebGL)、3D有效。

matUseUBO: boolean = true

Whether to enable UniformBuffer

材质是否启用UniformBuffer

powerPreference: WebGLPowerPreference = "default"

Power preference for the WebGL/WebGPU context. Hints the browser about the desired GPU configuration.

  • "default": Let the browser decide. In WebGPU mode, this is automatically set to "high-performance".
  • "high-performance": Prefer high-performance GPU. Use for graphically intensive applications.
  • "low-power": Prefer low-power GPU. Suitable for energy-efficient applications.

图形(WebGL/WebGPU)上下文的电源偏好设置。向浏览器提示所需的 GPU 配置。

  • "default":让浏览器决定。在 WebGPU 模式下,default会让引擎自动设置为high-performance
  • "high-performance":倾向于高性能 GPU。用于图形密集型应用。
  • "low-power":倾向于低功耗 GPU。适用于节能的应用。
premultipliedAlpha: boolean = true

Set whether the canvas is pre-multiplied, only effective for 2D(WebGL) and 3D.

设置画布是否预乘,只对2D(WebGL)、3D有效。

preserveDrawingBuffer: boolean = false

Whether to preserve the drawing buffer.

是否保留渲染缓冲区。

printWebglOrder: boolean = false

Whether to print WebGL instructions and locate WebGL errors

是否打印WebGL指令,同时定位WebGL报错

useRetinalCanvas: boolean = false

Whether to use retina mode, which may create larger RT on iOS for better effects

是否使用视网膜模式,在iOS上面可能会创建更大的RT,来达到更佳的效果

useWebGL2: boolean = true

Whether to use WebGL2

是否使用WebGL2

webGL2D_MeshAllocMaxMem: boolean = true

When using WebGL to render 2D, whether to allocate enough cache for 64k vertices each time a VB is created. This can improve efficiency.

当使用WebGL渲染2D的时候,每次创建VB是否直接分配足够64k个顶点的缓存。这样可以提高效率。