The Stat class is a performance statistics panel that provides real-time updates on various performance metrics. The performance metrics included in the statistics are updated approximately every 1 second and are as follows:

  • FPS: Frames per second (FPS). The higher and more stable the value, the smoother the display.
  • Sprite: The count of all rendering nodes (including containers). Its size affects the efficiency of the engine's node traversal, data organization, and rendering. The smaller the value, the higher the game's operational efficiency.
  • DrawCall: This value is a crucial indicator of performance; the smaller the number, the higher the game's operational efficiency. It represents the approximate number of rendering batches submitted per second. Each preparation of data and notification to the GPU for rendering is called one DrawCall. Besides the time-consuming process of notifying the GPU to render, switching materials and shaders are also very time-consuming operations during each DrawCall.
  • CurMem: Represents memory and video memory usage; the smaller the value, the better.
  • Shader: indicating the number of Shader submissions per second. The smaller the value, the better.
  • Canvas: Composed of three values, which are only present after setting CacheAs, with a default of 0/0/0. From left to right, the meanings of the values are: the number of canvases redrawn per frame / the number of canvases with "normal" cache type / the number of canvases with "bitmap" cache type.

Stat是一个性能统计面板,可以实时更新相关的性能参数。参与统计的性能参数如下(所有参数都是每大约1秒进行更新):

  • FPS(WebGL):每秒显示的帧数。值越高且越稳定,画面越流畅。
  • Sprite:统计所有渲染节点(包括容器)的数量。这个数值的大小会影响引擎在节点遍历、数据组织和渲染方面的效率。数值越小,游戏运行效率越高。
  • DrawCall:此值是决定性能的重要指标,数值越小,游戏运行效率越高。表示大约每1秒的渲染提交批次。每次准备数据并通知 GPU 进行渲染的过程称为1次 DrawCall。在每次 DrawCall 中,除了通知 GPU 渲染比较耗时外,切换材质与 shader 也是非常耗时的操作。
  • CurMem:表示内存与显存的占用,数值越小越好。
  • Shader:表示每大约1秒 Shader 提交次数。数值越小越好。
  • Canvas:由三个数值组成,仅在设置了 CacheAs 之后才会有数值,默认为0/0/0。从左到右数值的意义分别为:每帧重绘的画布数量 / 缓存类型为"normal"的画布数量 / 缓存类型为"bitmap"的画布数量。

构造函数

属性

_statUI: StatUI
_statUIClass: typeof StatUI
AllShow: StatUIParams[] = ...

All Show

所有显示

AllToggle: StatToggleUIParams[] = ...

AllToggle

所有开关

blitDrawCall: number = 0
BlitDrawCall: StatUIParams = ...

BlitDrawCall

位块渲染提交批次

BufferMemory: StatUIParams = ...

BufferMemory

Buffer内存

canvasBitmap: number = 0

Number of times the canvas has used bitmap rendering.

画布 canvas 使用位图渲染的次数。

canvasNormal: number = 0

Number of times the canvas has used standard rendering.

画布 canvas 使用标准渲染的次数。

canvasReCache: number = 0

Number of times the canvas buffer has been repainted.

画布 canvas 缓冲区重绘次数。

CMDDrawCall: StatUIParams = ...

CMDDrawCall

CMD渲染提交批次

cpuMemory: number

Accumulated memory managed by the resource manager, in bytes.

资源管理器所管理资源的累计内存,以字节为单位。

DepthCastDrawCall: StatUIParams = ...

DepthCastDrawCall

深度投射渲染提交批次

draw2D: number = 0
DrawCall: StatUIParams = ...

DrawCall

渲染提交批次

enableAnimatorUpdate: boolean = true

Enables or disables animation updates.

开启或关闭动画更新。

enableCameraCMD: boolean = true

Enables or disables CMD.

开启或关闭CMD。

enableLight: boolean = true

Enables or disables light sources.

开启或关闭光源效果。

enablemsaa: boolean = true

Enables or disables MSAA.

开启或关闭 MSAA。

enableMulLight: boolean = true

Enables or disables multiple light sources.

开启或关闭多光源效果。

enableOpaque: boolean = true

Enables or disables rendering of opaque objects.

开启或关闭不透明物体渲染。

enableParticle: boolean = true

Enables or disables particle rendering.

开启或关闭粒子渲染。

enablePhysicsUpdate: boolean = true

Enables or disables physics updates.

开启或关闭物理更新。

enablePostprocess: boolean = true

Enables or disables post-processing effects.

开启或关闭后期处理效果。

enableRenderPassStatArray: boolean = false
enableShadow: boolean = true

Enables or disables shadows.

开启或关闭阴影效果。

enableSkin: boolean = true

Enables or disables skin rendering.

开启或关闭skin渲染。

enableTransparent: boolean = true

Enables or disables transparent rendering.

开启或关闭透明渲染。

FPS: number = 0

Current frames per second (FPS).

当前每秒帧数(FPS)。

FPSStatUIParams: StatUIParams = ...

The current frame rate.

当前帧率

FrustumCulling: StatUIParams = ...

FrustumCulling

视锥体剔除

gpuMemory: number

The cumulative memory of the resources managed by the resource manager, in bytes.

资源管理器所管理资源的累计内存,以字节为单位。

GPUMemory: StatUIParams = ...

GPU memory

GPU 显存

InstanceDrawCall: StatUIParams = ...

InstanceDrawCall

实例绘制渲染提交批次

loopCount: number = 0

Count of rendering loops of the main stage Stage.

主舞台 Stage 的渲染次数计数。

memoryShow: StatUIParams[] = ...

Memory Show

内存显示

NodeStatUIParams: StatUIParams = ...

Node nums

节点数量

OpaqueDrawCall: StatUIParams = ...

OpaqueDrawCall

不透明物体渲染提交批次

ParticleRenderNode: StatUIParams = ...

ParticleRenderNode

粒子渲染节点数量

phyiscs_EventCount: number

The count of physics events.

物理事件的数量。

phyiscs_KinematicRigidBodyCount: number

The count of kinematic rigid bodies in the physics system.

物理系统中运动学刚体的数量。

physics_CharacterControllerCount: number

The count of character controllers in the physics system.

物理系统中角色控制器的数量。

physics_dynamicRigidBodyCount: number

The count of dynamic rigid bodies in the physics system.

物理系统中动态刚体的数量。

physics_jointCount: number

The count of joints in the physics system.

物理系统中关节的数量。

physics_staticRigidBodyCount: number

The count of static rigid bodies in the physics system.

物理系统中静态刚体的数量。

RenderFuncToggle: StatToggleUIParams[] = ...

Render Func Toggle

功能开关

RenderModeToggle: StatToggleUIParams[] = ...

Render Mode Toggle

渲染开关

RenderNode: StatUIParams = ...

RenderNoe

渲染节点数量

renderPassStatArray: number[] = []
renderShow: StatUIParams[] = ...

Rendering Show

渲染显示

renderSlow: boolean = false

Indicates whether the current rendering mode is slow.

表示当前使用的是否为慢渲染模式。

RenderTextureMemory: StatUIParams = ...

RenderTexture memory

渲染纹理内存

ShadowDrawCall: StatUIParams = ...

TransformDrawCall

透明物体渲染提交批次

SkinRenderNode: StatUIParams = ...

SkinRenderNode

蒙皮(骨骼动画)渲染节点数量

Sprite3DStatUIParams: StatUIParams = ...

Sprite3D nums

3D精灵数量

spriteRenderUseCacheCount: number = 0

Number of Sprites that use cache for rendering.

精灵渲染使用缓存 Sprite 的数量。

TextureMemeory: StatUIParams = ...

Texture2D memory

2D纹理内存

TransDrawCall: StatUIParams = ...

TransformDrawCall

透明物体渲染提交批次

TriangleFace: StatUIParams = ...

triangleFace

三角形面数量

UniformUpload: StatUIParams = ...

uniformUpload

uniform上传

uploadUniformNum: StatUIParams = ...

upload Uniform

Uniform上传数量

方法

  • 返回 void

    Hides the performance statistics information from the screen.

    从屏幕上隐藏性能统计信息。

  • 参数

    • 可选x: number

      The X-coordinate position where the statistics should be displayed.

    • 可选y: number

      The Y-coordinate position where the statistics should be displayed.

    • 可选views: StatUIParams[]

      An optional array of StatUIParams that defines which statistics to display.

    返回 void

    Displays performance statistics information on the screen. To be effective, it should be called at the very beginning of the application.

    在屏幕上显示性能统计信息。 为了有效,它应该在应用程序最开始时调用。

  • 返回 void

    Updates the engine data for statistics such as triangle count, draw call count, and memory usage.

    更新引擎数据,包括三角形数量、绘制调用计数和内存使用情况等统计信息。