Laya is the reference entry for global objects.

The Laya class refers to some commonly used global objects, such as Laya.stage: stage, Laya.timer: time manager, Laya.loader: loading manager. Pay attention to case when using.

Laya是全局对象的引用入口集。

Laya类引用了一些常用的全局对象,比如Laya.stage:舞台,Laya.timer:时间管理器,Laya.loader:加载管理器,使用时注意大小写。

构造函数

属性

loader: Loader = null

Reference to the loading manager.

加载管理器的引用。

stage: Stage = null

Reference to the stage object.

舞台对象的引用。

timer: Timer = null

Main game timer, also manages scene, animation, tween effects clock. By controlling this timer's scale, fast-forward and slow-motion effects can be achieved.

游戏主时针,同时也是管理场景,动画,缓动等效果时钟,通过控制本时针缩放,达到快进慢播效果。

方法

  • 参数

    • callback: () => void | Promise<void>

      The initialization function of the module.

    返回 void

    Execute custom logic after engine initialization. All registered callbacks are executed in the order of registration.

    在引擎初始化后执行自定义逻辑。所有注册的回调按注册顺序依次执行。

  • 参数

    • callback: (stageConfig: IStageConfig) => void | Promise<void>

      The initialization function of the module.

    返回 void

    Execute custom logic before engine initialization. At this time, the Stage has not been created yet, so you can modify stageConfig to implement dynamic stage configuration. All registered callbacks are executed in the order of registration.

    在引擎初始化前执行自定义逻辑。 此时 Stage 尚未创建,可以修改 stageConfig 实现动态舞台配置。所有注册的回调按注册顺序依次执行。

  • 参数

    • callback: () => void | Promise<void>

      The initialization function of the module.

    返回 void

    Adds an initialization function. Various engine modules, such as physics, pathfinding, etc., can register their initialization logic here if needed. Developers typically do not use this directly. All registered callbacks are executed in parallel.

    新增初始化函数,引擎各个模块,例如物理,寻路等,如果有初始化逻辑可以在这里注册初始化函数。 开发者一般不直接使用。所有注册的回调是并行执行。

  • 参数

    • callback: () => void | Promise<void>

      The callback function.

    返回 void

    After the main package is loaded, this callback will be executed. All registered callbacks are executed in parallel.

    当主包加载完成后,会执行这个回调。所有注册的回调是并行执行。

  • 参数

    • value: boolean

      Indicates whether to capture global errors and display a prompt. When set to true, detailed error stacks can be thrown in a pop-up window if unknown errors occur. The default is false.

    返回 void

    Pop up error information, suitable for mobile devices and other convenient debugging.

    弹出错误信息,适用于移动设备等不方便调试的时候,

  • 参数

    • name: string

      The name of the library to import. e.g. test.dll

    返回 any

    The imported object.

    Import a native library(e.g. dll/so/dylib). If not in the Conch environment, this function will return null.

    导入一个原生库(如dll/so/dylib)。

  • 参数

    • 可选stageConfig: IStageConfig

      Stage settings used to initialize the engine

    返回 Promise<void>

    Initialize the engine. To use the engine, you need to initialize it first.

    初始化引擎。使用引擎需要先初始化引擎。

  • 参数

    • width: number

      The width of the initialized game window, also known as design width.

    • height: number

      The height of the initialized game window, also known as design height.

    返回 Promise<void>

    Initialize the engine. To use the engine, you need to initialize it first.

    初始化引擎。使用引擎需要先初始化引擎。