Stage is the root node of the display list. All display objects are shown on the stage. It can be accessed through the Laya.stage singleton. Stage provides several adaptation modes. Different adaptation modes will produce different canvas sizes. The larger the canvas, the greater the rendering pressure, so it's important to choose an appropriate adaptation scheme. Stage provides different frame rate modes. The higher the frame rate, the greater the rendering pressure and power consumption. Reasonable use of frame rates or even dynamic changes in frame rates can help improve mobile phone power consumption.

  • Event.RESIZE("resize"): Discheduled when the stage size is resized.
  • Event.FOCUS("focus"): Dispatched when the stage gains focus. For example, when the browser or current tab is switched back from the background.
  • Event.BLUR("blur"): Dispatched when the stage loses focus. For example, when the browser or current tab is switched to the background.
  • Event.FOCUS_CHANGE("focuschange"): Dispatched when the stage focus changes. Use Laya.stage.isFocused to get whether the current stage has focus.
  • Event.VISIBILITY_CHANGE("visibilitychange"): Dispatched when the stage visibility changes (e.g., when the browser or current tab is switched to the background). Use Laya.stage.isVisibility to get the current visibility state.
  • Event.FULL_SCREEN_CHANGE("fullscreenchange"): Discheduled when the browser fullscreen state changes, such as entering or exiting fullscreen mode.

Stage 是舞台类,显示列表的根节点,所有显示对象都在舞台上显示。通过 Laya.stage 单例访问。 Stage提供几种适配模式,不同的适配模式会产生不同的画布大小,画布越大,渲染压力越大,所以要选择合适的适配方案。 Stage提供不同的帧率模式,帧率越高,渲染压力越大,越费电,合理使用帧率甚至动态更改帧率有利于改进手机耗电。

  • Event.RESIZE("resize"): 舞台大小经过重新调整时进行调度。
  • Event.FOCUS("focus"): 舞台获得焦点时调度。比如浏览器或者当前标签处于后台,重新切换回来时进行调度。
  • Event.BLUR("blur"): 舞台失去焦点时调度。比如浏览器或者当前标签被切换到后台后调度。
  • Event.FOCUS_CHANGE("focuschange"): 舞台焦点变化时调度,使用Laya.stage.isFocused可以获取当前舞台是否获得焦点。
  • Event.VISIBILITY_CHANGE("visibilitychange"): 舞台可见性发生变化时调度(比如浏览器或者当前标签被切换到后台后调度),使用Laya.stage.isVisibility可以获取当前是否处于显示状态。
  • Event.FULL_SCREEN_CHANGE("fullscreenchange"): 浏览器全屏更改时调度,比如进入全屏或者退出全屏。

层级 (查看层级一览)

属性

访问器

方法

属性

_canvasTransform: Matrix = ...

The transformation matrix of the canvas.

画布的变换矩阵。

_skinBaseUrl: string

If the node needs to load related skins but placed in different domains, you can set it here.

如果节点需要加载相关的皮肤,但放在不同域,这里可以设置。

canvasDegree: number = 0

The rotation angle of the canvas.

画布的旋转角度。

canvasRotation: boolean = false

Whether the canvas has been flipped.

画布是否发生翻转。

designHeight: number = 0

Design height (the height set during initialization Laya.init(width,height))

设计高度(初始化时设置的高度Laya.init(width,height))

designWidth: number = 0

Design width (the width set during initialization Laya.init(width,height))

设计宽度(初始化时设置的宽度Laya.init(width,height))

focus: Node

The current focus object, which will affect the dispatch of current keyboard events.

当前焦点对象,此对象会影响当前键盘事件的派发主体。

hitTestPrior: boolean = false

Under the premise that this object is non-penetrable (mouseThrough is false), specify whether the mouse event capture detection prioritizes this object. When set to true, the object itself is prioritized for detection. When set to false, the child objects are prioritized. When set to prioritize the object itself, the object is detected first. If the object itself is not hit, the detection is directly interrupted, indicating that no target was hit. If the object itself is hit, further recursive detection is performed on its child objects until the final mouse hit target is found or all child nodes have been checked. When set to prioritize child objects, the child objects are recursively detected first. If a child object is hit, the detection is interrupted and the hit target is obtained. If all child nodes have been checked and no child object is hit, then the detection checks if the object itself is hit. In most cases, prioritizing the detection of child objects is advisable unless the developer does not care about the mouse event detection results of the current node's child nodes. For example, when child nodes are certainly within the width and height range of the parent node's container, there is no need for recursive detection layer by layer if the mouse click does not occur within the parent node's area. Using this property appropriately can reduce the nodes for mouse event detection and improve performance.

在本对象为不可穿透(mouseThrough为false)的前提下,指定鼠标事件捕获检测是否优先检测本对象。为true时优先检测本对象,为false时优先检测子对象。 优先检测本对象时,如果本对象没有被检测命中,会中断检测,表示没有命中目标;如果本对象被检测命中,则进一步递归检测其子对象,直到找到鼠标最终的命中目标或所有子节点都检测完毕。 优先检测子对象时,先递归检测其子对象,如果子对象被检测命中,则中断检测,获得命中目标。如果所有子节点都检测完毕,仍未检测命中任何子对象,最后再检测本对象是否被命中; 大多数情况下需要优先检测子对象,除非开发者并不关心当前节点的子节点的鼠标事件检测结果,也就是以当前节点作为其子节点的鼠标事件检测依据。例如,子节点肯定在父节点的容器宽高范围内,当鼠标点击不发生在父节点范围内的区域时,就不必层层递归检测了。 合理使用本属性,能减少鼠标事件检测的节点,提高性能。

mouseThrough: boolean = false

For non-UI component display object nodes (container objects or display objects without image resources), specifies whether the mouse events penetrate this object's collision detection. true means the object is penetrable, false means it is not penetrable. When penetrable, the engine will no longer detect this object and will recursively check its child objects until it finds the target object or misses all objects. When not penetrable, the node's width and height define the mouse collision area (a non-penetrable rectangular area). If the rectangular collision area does not meet the requirements, you can use the drawing area of the hit area as the collision area. The hit area takes precedence over width and height of node as the non-penetrable mouse collision area. Note that for UI object nodes with a set skin property, once a skin texture resource is set, this property becomes ineffective, and the rectangular area drawn by the texture will always be non-penetrable unless it does not accept mouse events or a non-clickable area is set.

用于非UI组件显示对象节点(容器对象或没有设置图像资源的显示对象),鼠标事件与此对象在碰撞检测时,是否穿透。ture为可穿透,false为不可穿透。 可穿透时,引擎不再检测本对象,而会递归检测子对象,直到找到命中的目标对象或者未命中任何对象。 不可穿透时,以节点宽高为鼠标碰撞区(矩形的不可穿透区域)。如果矩形碰撞区不能满足需求,可以将点击区域的绘制图形作为碰撞区,绘制区域优先于宽高作为不可穿透的鼠标碰撞区域。 注意,可以设置skin属性的UI对象节点,当设置了skin纹理资源之后,该属性设置失效,纹理绘制的矩形区域内会始终处于不可穿透状态。除非不接受鼠标事件或设置不可点击区域。

name: string = ""

Node name.

节点名称。

renderingEnabled: boolean = true

Set whether to render. When set to false, rendering can be stopped, the screen will stay on the last render, reducing CPU consumption. This setting does not affect the clock. For example, in an inactive state, you can set renderingEnabled=false to save consumption.

设置是否渲染,设置为false,可以停止渲染,画面会停留到最后一次渲染上,减少cpu消耗,此设置不影响时钟。 比如非激活状态,可以设置renderingEnabled=false以节省消耗。

screenAdaptationEnabled: boolean = true

Whether to enable screen adaptation. After adaptation, screen adaptation can be turned off at some point to prevent unexpected screen changes caused by certain operations.

是否启用屏幕适配,可以适配后,在某个时候关闭屏幕适配,防止某些操作导致的屏幕意外改变。

tag: string

Node tag.

节点标签。

useRetinalCanvas: boolean = false

Using physical resolution as the canvas size will improve rendering effects, but it will reduce performance

使用物理分辨率作为画布大小,会改进渲染效果,但是会降低性能

ALIGN_BOTTOM: string = "bottom"

Canvas is vertically aligned to the bottom.

画布垂直居下对齐。

ALIGN_CENTER: string = "center"

Canvas is horizontally centered.

画布水平居中对齐。

ALIGN_LEFT: string = "left"

Canvas is horizontally aligned to the left.

画布水平居左对齐。

ALIGN_MIDDLE: string = "middle"

Canvas is vertically centered.

画布垂直居中对齐。

ALIGN_RIGHT: string = "right"

Canvas is horizontally aligned to the right.

画布水平居右对齐。

ALIGN_TOP: string = "top"

Canvas is vertically aligned to the top.

画布垂直居上对齐。

FRAME_FAST: string = "fast"

Fast mode, running at the configured maximum frame rate (not exceeding the device's maximum frame rate).

快速模式,以配置的最高帧率运行(不得超过设备最高帧率)。

FRAME_MOUSE: string = "mouse"

Mouse mode, In this mode, it checks if the last mouse movement occurred within the last two seconds. If it did, frameMode will be set to FRAME_FAST; otherwise, it will be set to FRAME_SLOW.

鼠标模式,该模式下,会检查上一次鼠标移动的时间,如果是在最近的两秒内,帧率的模式会采用快速模式,否则采用慢速模式。

FRAME_SLEEP: string = "sleep"

Sleep mode, running at 1 frame per second.

休眠模式,以每秒1帧的速度运行。

FRAME_SLOW: string = "slow"

Slow mode has a frame rate that is half of the fast mode. The principle is to skip rendering every other frame. For example, if the maximum frame rate in fast mode is 60, the maximum frame rate in slow mode would be 30.

慢速模式的帧率是快速模式的一半,其原理是每隔一帧就会跳过渲染。例如快速模式的满帧为60时,慢速模式的满帧则为30。

SCALE_FIXED_AUTO: string = "fixedauto"

The scaling method is automatically chosen based on the comparison between the screen aspect ratio and the design aspect ratio. If the screen aspect ratio is less than the design aspect ratio, the width is kept fixed with equal scale factors and the canvas height is calculated; otherwise, the height is kept fixed with equal scale factors and the canvas width is calculated. This mode flexibly adapts to different devices but may result in content being cut off or blank borders appearing.

根据屏幕宽高比与设计宽高比的比较,自动选择缩放方式;如果屏幕宽高比小于设计宽高比,则保持宽度固定,缩放因子相等并计算画布高度;否则,保持高度固定,缩放因子相等并计算画布宽度。这种模式可以灵活适应不同的设备,但可能会导致内容被裁切或出现空白边缘。

SCALE_FIXED_HEIGHT: string = "fixedheight"

The stage height is kept fixed, and scaling is done based on the screen width. The canvas width is calculated based on the screen width and scale factor, and the stage width is set accordingly. This mode ensures consistent height but may alter the width ratio on different devices.

保持舞台的高度固定,根据屏幕宽度进行缩放。画布的宽度根据屏幕宽度和缩放因子计算,并设置舞台的宽度。这种模式确保高度一致,但在不同设备上可能会改变宽度比例。

SCALE_FIXED_WIDTH: string = "fixedwidth"

The stage width is kept fixed, and scaling is done based on the screen height. The canvas height is calculated based on the screen height and scale factor, and the stage height is set accordingly. This mode ensures consistent width but may alter the height ratio on different devices.

保持舞台的宽度固定,根据屏幕高度进行缩放。画布的高度根据屏幕高度和缩放因子计算,并设置舞台的高度。这种模式确保宽度一致,但在不同设备上可能会改变高度比例。

SCALE_FULL: string = "full"

Set the stage and canvas directly to the screen's width and height. Other aspects are the same as the SCALE_NOSCALE mode, with no scaling applied to the design content itself. This mode is suitable for scenarios where you want to fully utilize the screen space and handle dynamic layout on the screen yourself.

将舞台与画布直接设置为屏幕宽度和高度,其它方面与SCALE_NOSCALE模式一样,不对设计内容本身进行缩放。这种模式适用于希望完全利用屏幕空间,自行对屏幕动态排版的需求。

SCALE_NOBORDER: string = "noborder"

The stage is scaled to fill the screen, with the actual width and height of the canvas calculated based on the design width and height multiplied by the maximum scale factor. This mode ensures that content fully covers the display area, but it may result in some content being cut off.

将舞台缩放以填满屏幕,画布的实际宽度和高度根据设计宽度和高度乘以最大缩放因子计算。这种模式保证内容完全覆盖屏幕,但可能会导致部分设计内容被裁切。

SCALE_NOSCALE: string = "noscale"

No scaling is applied, and the stage is displayed at its design size. The actual width and height of the canvas are set to the design width and height. This mode is suitable for applications that want to maintain the original design ratio, but it may result in blank areas or content overflow on different devices.

不进行缩放,舞台按照设计尺寸显示,画布的实际宽度和高度设置为设计宽度和高度。这种模式适合希望保持原始设计比例的应用,但在不同设备上可能会出现空白区域或内容超出屏幕的情况。

SCALE_SHOWALL: string = "showall"

The stage is scaled to fit the screen while maintaining the aspect ratio, ensuring the entire stage content is visible. The actual width and height of the canvas are calculated based on the design width and height multiplied by the minimum scale factor. While this prevents content from being cut off, it may result in blank borders at the top/bottom or sides.

保持纵横比的情况下,将舞台缩放以适应屏幕,确保整个舞台内容可见。画布的实际宽度和高度根据设计宽度和高度乘以最小缩放因子计算。虽然避免了内容被裁切,但可能会出现上下或左右的空白边缘。

SCREEN_HORIZONTAL: string = "horizontal"

Automatically switch to landscape mode.

自动横屏。

SCREEN_NONE: string = "none"

Do not change the screen orientation.

不更改屏幕。

SCREEN_VERTICAL: string = "vertical"

Automatically switch to portrait mode.

自动竖屏。

访问器

  • get _isHeightSet(): boolean

    返回 boolean

    True if the height is set, otherwise false.

    Check if the height is set.

    检查是否设置了高度。

  • get _isWidthSet(): boolean

    返回 boolean

    True if the width is set, otherwise false.

    Check if the width is set.

    检查是否设置了宽度。

  • get activeInHierarchy(): boolean

    返回 boolean

    Whether this node is active in the hierarchy.

    该节点在层级中是否激活。

  • get alignH(): string

    返回 string

    Horizontal alignment of canvas. Default value is "left". Available values:

    • "left": Align to the left.
    • "center": Align to the center.
    • "right": Align to the right.

    画布水平对齐方式。默认值为"left"。 取值范围:

    • "left":居左对齐。
    • "center":居中对齐。
    • "right":居右对齐。
  • set alignH(value: string): void

    参数

    • value: string

    返回 void

  • get alignV(): string

    返回 string

    Vertical alignment of canvas. Default value is "top". Available values:

    • "top": Align to the top.
    • "middle": Align to the middle.
    • "bottom": Align to the bottom.

    画布垂直对齐方式。默认值为"top"。 取值范围:

    • "top":居顶部对齐。
    • "middle":居中对齐。
    • "bottom":居底部对齐。
  • set alignV(value: string): void

    参数

    • value: string

    返回 void

  • get alpha(): number

    返回 number

    The transparency value, ranging from 0 to 1, with a default value of 1 (opaque). Changing the alpha value will affect the drawcall.

    透明度,值为 0-1,默认值为 1(不透明)。更改 alpha 值会影响 drawcall。

  • set alpha(value: number): void

    参数

    • value: number

    返回 void

  • get anchorX(): number

    返回 number

    The anchor point's x-coordinate, ranging from 0 to 1. Setting anchorX will ultimately change the node's pivot point through the pivotX value.

    X 轴锚点,值为 0-1。设置 anchorX 值最终会通过 pivotX 值来改变节点的轴心点。

  • set anchorX(value: number): void

    参数

    • value: number

    返回 void

  • get anchorY(): number

    返回 number

    The anchor point's y-coordinate, ranging from 0 to 1. Setting anchorY will ultimately change the node's pivot point through the pivotY value.

    Y 轴锚点,值为 0-1。设置 anchorY 值最终会通过 pivotY 值来改变节点的轴心点。

  • set anchorY(value: number): void

    参数

    • value: number

    返回 void

  • get autoSize(): boolean

    返回 boolean

    Whether to automatically calculate the width and height of the node. The default value is false, which does not automatically calculate and offers better performance. If you want to get the width and height based on the drawn content, you can set this property to true, or use the getBounds method to obtain them, which has some impact on performance.

    是否自动计算节点的宽高数据。默认值为 false,不自动计算,性能更佳。 如果想根据绘制内容获取宽高,可以设置本属性为true,或者通过getBounds方法获取,对性能有一定影响。

  • set autoSize(value: boolean): void

    参数

    • value: boolean

    返回 void

  • get blendMode(): string

    返回 string

    Specifies the blending mode to be used. Only "lighter" is currently supported.

    指定要使用的混合模式,目前只支持 "lighter"。

  • set blendMode(value: string): void

    参数

    • value: string

    返回 void

  • get cacheAs(): string

    返回 string

    Specifies whether the display object is cached as a static image. When cacheAs is set, changes in child objects will automatically update the cache. You can also manually call the reCache method to update the cache. It is recommended to cache "complex content" that does not change frequently as a static image to greatly improve rendering performance. cacheAs has three values: "none", "normal", and "bitmap". The default is "none," which does not perform any caching. When set to "normal," command caching is used. When set to "bitmap," renderTarget caching is used. Disadvantages of the renderTarget caching mode: it creates additional renderTarget objects, increasing memory overhead, has a maximum cache area limit of 2048, and can increase CPU overhead with constant redrawing. Advantages: it significantly reduces draw calls and provides the highest rendering performance. Disadvantages of the command caching mode: it only reduces node traversal and command organization and does not reduce the number of draw calls, resulting in moderate performance. Advantages: it has no additional memory overhead and does not require renderTarget support.

    指定显示对象是否缓存为静态图像,cacheAs 时,子对象发生变化,会自动重新缓存,同时也可以手动调用 reCache 方法更新缓存。 建议把不经常变化的“复杂内容”缓存为静态图像,能极大提高渲染性能。cacheAs 有 "none","normal" 和 "bitmap" 三个值可选。 默认为 "none",不做任何缓存。 当值为 "normal" 时,使用命令缓存。 当值为 "bitmap" 时,使用 renderTarget 缓存。 renderTarget 缓存模式缺点:会额外创建 renderTarget 对象,增加内存开销,缓存面积有最大 2048 限制,不断重绘时会增加 CPU 开销。优点:大幅减少 drawcall,渲染性能最高。 命令缓存模式缺点:只会减少节点遍历及命令组织,不会减少 drawcall 数,性能中等。优点:没有额外内存开销,无需 renderTarget 支持。

  • set cacheAs(value: string): void

    参数

    • value: string

    返回 void

  • get clientScaleX(): number

    返回 number

    The X-axis scaling factor caused by the current viewport scaling mode.

    当前视窗由缩放模式导致的 X 轴缩放系数。

  • get clientScaleY(): number

    返回 number

    The Y-axis scaling factor caused by the current viewport scaling mode.

    当前视窗由缩放模式导致的 Y 轴缩放系数。

  • set customRenderEnable(b: boolean): void

    参数

    • b: boolean

      Whether to enable custom rendering.

    返回 void

    Enable or disable custom rendering. Custom rendering must be enabled to use the customRender function.

    设置是否开启自定义渲染,只有开启自定义渲染,才能使用 customRender 函数渲染。

  • get destroyed(): boolean

    返回 boolean

    Whether it has been destroyed. The object cannot be used after being destroyed.

    是否已经销毁。对象销毁后不能再使用。

  • get displayedInStage(): boolean

    返回 boolean

    Indicates whether the node is displayed in the scene.

    表示是否在显示列表中显示。

  • get displayHeight(): number

    返回 number

    The display height.

    The display height of the object, in pixels, including Y axis scaling.

    对象的显示高度(以像素为单位),包含Y轴缩放。

  • get displayWidth(): number

    返回 number

    The display width.

    The display width of the object, in pixels, including X axis scaling.

    对象的显示宽度(以像素为单位),包含X轴缩放。

  • get drawCallOptimize(): boolean

    返回 boolean

  • set drawCallOptimize(value: boolean): void

    参数

    • value: boolean

    返回 void

    Draw call optimization: when set to true, draw call optimization is enabled. During engine rendering, all text is automatically brought to the top layer to avoid interruptions by text when drawing images from the same atlas, thus reducing the number of draw calls. Enabling this will cause text to be non-obstructable. Use this feature cautiously if your project requires text to be obstructed.

    绘制调用优化,为true时,开启drawcall优化。引擎绘制时自动将所有文本提到显示最上层,避免同一个图集内的图像绘制时被文本打断,可以减少drawcall数量。 开启后,会导致文本无法被遮挡,存在文本遮挡需求的项目,请谨慎使用该功能。

  • get frameRate(): string

    返回 string

    Frame rate types:fast (default, full frame rate),slow (half of the full frame rate),mouse (full frame rate after mouse activity, switches to half frame rate if the mouse is idle for 2 seconds),sleep (1 frame per second)

    当前帧率类型:fast(默认,满帧),slow(满帧减半),mouse(鼠标活动后满帧,鼠标不动2秒后满帧减半),sleep(每秒1帧)。

  • set frameRate(value: string): void

    参数

    • value: string

    返回 void

  • set fullScreenEnabled(value: boolean): void

    参数

    • value: boolean

    返回 void

    Whether to enable fullscreen mode. Users can enter fullscreen mode by clicking. Compatibility note: Some browsers, such as iPhone, do not allow entering fullscreen mode by clicking.

    是否开启全屏,用户点击后进入全屏。 兼容性提示:部分浏览器不允许点击进入全屏,比如iPhone等。

  • get globalScaleX(): number

    返回 number

    The global X-axis scale.

    Gets the global X-axis scale relative to the stage (this value includes the scaling of parent nodes).

    获得相对于stage的全局X轴缩放值(会叠加父亲节点的缩放值)。

  • get globalScaleY(): number

    返回 number

    The global Y-axis scale.

    Gets the global Y-axis scale relative to the stage (this value includes the scaling of parent nodes).

    获得相对于stage的全局Y轴缩放值(会叠加父亲节点的缩放值)。

  • get hitArea(): IHitArea

    返回 IHitArea

    You can set a rectangular area as the clickable region, or set a HitArea instance as the clickable region. The HitArea can have both clickable and non-clickable areas defined. If the hitArea is not set, the mouse collision detection will be based on the area formed by the width and height of the object.

    可以设置一个矩形区域作为点击区域,或者设置一个 HitArea 实例作为点击区域,HitArea 内可以设置可点击和不可点击区域。如果不设置 hitArea,则根据宽高形成的区域进行鼠标碰撞检测。

  • set hitArea(value: IHitArea): void

    参数

    返回 void

  • get is3D(): boolean

    返回 boolean

    Whether it is a 3D node, i.e., Scene3D, Sprite3D and their derived classes.

    是否是3D节点,即Scene3D、Sprite3D及其衍生类。

  • get isVisibility(): boolean

    返回 boolean

    Indicates whether the stage is in a visible state (whether it has entered the background).

    舞台是否处于可见状态(是否进入后台)。

  • get mouseEnabled(): boolean

    返回 boolean

    Indicates whether the object receives mouse events. The default is false. If you listen to mouse events, this value will be automatically set to true.

    是否接受鼠标事件。默认为 false,如果监听鼠标事件,则会自动设置为 true.

  • set mouseEnabled(value: boolean): void

    参数

    • value: boolean

    返回 void

  • get mouseX(): number

    返回 number

    The X coordinate of the mouse on the Stage.

    鼠标在 舞台 上的 X 轴坐标。

  • get mouseY(): number

    返回 number

    The Y coordinate of the mouse on the Stage.

    鼠标在 舞台 上的 Y 轴坐标。

  • get pivotX(): number

    返回 number

    The x-axis pivot point position, in pixels, with a default value of 0. The pivot point affects the object's position, scaling center, and rotation center.

    X 轴轴心点的位置,以像素为单位,默认为 0。轴心点会影响对象的位置、缩放中心和旋转中心。

  • set pivotX(value: number): void

    参数

    • value: number

    返回 void

  • get pivotY(): number

    返回 number

    The y-axis pivot point position, in pixels, with a default value of 0. The pivot point affects the object's position, scaling center, and rotation center.

    Y 轴轴心点的位置,以像素为单位,默认为 0。轴心点会影响对象的位置、缩放中心和旋转中心。

  • set pivotY(value: number): void

    参数

    • value: number

    返回 void

  • get scaleMode(): string

    返回 string

    The scale mode. Default value is "noscale". Available values:

    • "noscale": No scaling.
    • "showall": Scale with the minimum ratio to fit the screen.
    • "noborder": Scale with the maximum ratio to fit the screen.
    • "full": No scaling, the stage width and height equal to the screen width and height.
    • "fixedwidth": Fixed width, height scales according to the screen ratio.
    • "fixedheight": Fixed height, width scales according to the screen ratio.
    • "fixedauto": Automatically choose between fixedwidth or fixedheight based on the aspect ratio.

    缩放模式。默认值为 "noscale"。 取值范围:

    • "noscale":不缩放,舞台与画布采用设计宽高。
    • "showall":舞台与画布按最小比例缩放。
    • "noborder":舞台与画布按最大比例缩放。
    • "full":不缩放,舞台与画布的宽高等于屏幕宽高。
    • "fixedwidth":宽度不变,高度根据屏幕比缩放。
    • "fixedheight":高度不变,宽度根据屏幕比缩放。
    • "fixedauto":根据宽高比,自动选择使用fixedwidth或fixedheight。
  • set scaleMode(value: string): void

    参数

    • value: string

    返回 void

  • get scaleX(): number

    返回 number

    The scale factor on the X axis, with a default value of 1. Setting a negative value can achieve a horizontal flip effect, e.g., scaleX=-1.

    X轴缩放值,默认值为1。设置为负数可以实现水平反转效果,例如scaleX=-1。

  • set scaleX(value: number): void

    参数

    • value: number

    返回 void

  • get scaleY(): number

    返回 number

    The scale factor on the Y axis, with a default value of 1. Setting a negative value can achieve a vertical flip effect, e.g., scaleY=-1.

    Y轴缩放值,默认值为1。设置为负数可以实现垂直反转效果,例如scaleY=-1。

  • set scaleY(value: number): void

    参数

    • value: number

    返回 void

  • get screenMode(): string

    返回 string

    The scene layout type. Available values:

    • "none": Do not change the screen
    • "horizontal": Automatic landscape mode
    • "vertical": Automatic portrait mode

    场景布局类型。 取值范围:

    • "none":不更改屏幕
    • "horizontal":自动横屏
    • "vertical":自动竖屏
  • set screenMode(value: string): void

    参数

    • value: string

    返回 void

  • get scrollRect(): Rectangle

    返回 Rectangle

    The scroll rectangle range of the display object, with a clipping effect (if you only want to limit the rendering area of child objects, please use viewport). Differences between srollRect and viewport:

    1. srollRect has a clipping effect, viewport only affects whether child objects are rendered, and does not have a clipping effect (higher performance).
    2. Setting the x and y properties of the rect can achieve scrolling effect, but scrollRect will keep the position of point 0,0 unchanged.

    显示对象的滚动矩形范围,具有裁剪效果(如果只想限制子对象渲染区域,请使用viewport) srollRect和viewport的区别: 1.srollRect自带裁剪效果,viewport只影响子对象渲染是否渲染,不具有裁剪效果(性能更高)。 2.设置rect的x,y属性均能实现区域滚动效果,但scrollRect会保持0,0点位置不变。

  • set scrollRect(value: Rectangle): void

    参数

    返回 void

  • get staticCache(): boolean

    返回 boolean

    设置cacheAs为非空时此值才有效,staticCache=true时,子对象变化时不会自动更新缓存,只能通过调用reCache方法手动刷新。

  • set staticCache(value: boolean): void

    参数

    • value: boolean

    返回 void

  • get texture(): Texture

    返回 Texture

    Set a Texture instance and display the image (if there are other drawings before, it will be cleared). Equivalent to graphics.clear();graphics.drawImage(), but with better performance. You can also assign an image address, which will automatically load the image and then display it.

    设置一个Texture实例,并显示此图片(如果之前有其他绘制,则会被清除掉)。 等同于graphics.clear();graphics.drawImage(),但性能更高。

  • set texture(value: Texture): void

    参数

    返回 void

  • get viewport(): Rectangle

    返回 Rectangle

    The viewport size. Child objects outside the viewport will not be rendered (if you want to achieve a clipping effect, please use scrollRect). Proper use can improve rendering performance. For example, map tiles composed of small images will not render small images outside the viewport. The default value is null. The differences between scrollRect and viewport:

    1. scrollRect comes with a clipping effect, while viewport only affects whether child objects are rendered without clipping (better performance).
    2. Setting the x and y properties of the rect can achieve a scrolling effect in the area, but scrollRect will keep the position of point 0,0 unchanged.

    视口大小,视口外的子对象将不被渲染(如果想实现裁剪效果,请使用scrollRect),合理使用能提高渲染性能。例如,由一个个小图片拼成的地图块,viewport外面的小图片将不渲染。 默认值为null。 scrollRect和viewport的区别:

    1. scrollRect自带裁剪效果,viewport只影响子对象是否渲染,不具有裁剪效果(性能更高)。
    2. 设置rect的x,y属性均能实现区域滚动效果,但scrollRect会保持0,0点位置不变。
  • set viewport(value: Rectangle): void

    参数

    返回 void

  • get visible(): boolean

    返回 boolean

    Indicates whether it is visible, default is true. If set to invisible, the node will not be rendered.

    表示是否可见,默认为true。如果设置不可见,节点将不被渲染。

  • set visible(value: boolean): void

    参数

    • value: boolean

    返回 void

    Indicates whether the object is visible. The default value is true. If set to false, the node will not be rendered.

    表示对象是否可见,默认为 true。如果设置为 false,节点将不会被渲染。

  • get zOrder(): number

    返回 number

    The z-order. If this value is changed, all objects of the same container will be re-sorted according to the value. The larger the value, the higher it is. The default is 0, which is sorted according to the order of addition.

    z排序,更改此值,则会按照值的大小对同一容器的所有对象重新排序。值越大,越靠上。默认为0,则根据添加顺序排序。

  • set zOrder(value: number): void

    参数

    • value: number

    返回 void

方法

  • 参数

    • bit: number

      The bit to set.

    • value: boolean

      The value to set, true or false.

    返回 boolean

    Whether the bit was changed.

    Set a specific bit of the node.

    设置节点的特定位。

  • 类型参数

    参数

    • node: T

      The child node to be inserted.

    • index: number

      The index at which the child node will be inserted.

    返回 T

    The inserted child node.

    Insert a child node at a specific index.

    在指定的索引位置插入子节点。

  • 参数

    • type: string

      The event type.

    • 可选data: any

      The event data. An Event object can be passed.

    返回 void

    Bubble an event up the parent chain.

    事件冒泡到父节点链。

  • 参数

    • method: Function

      The callback function.

    • args: any[] = null

      The parameters passed to the callback function.

    返回 void

    Delays the execution of a callback function until the next frame after the current execution block is finished. The callback function will only be executed once. It is generally called before the control is displayed on the screen to delay the calculation of data.

    在当前执行块完成后,延迟执行回调函数到下一帧。 回调函数只会被执行一次。一般在控件被显示在屏幕之前调用,用于延迟计算数据。

  • 参数

    • caller: any

      The execution scope of the callback function (this).

    • method: Function

      The callback function.

    返回 void

    Clears a timer.

    清除定时器。功能同Laya.timer.clear()。

  • 参数

    • node: Node

      The specified node.

    返回 boolean

    A Boolean value indicating whether the current node contains the specified node.

    Checks whether the current node contains the specified node.

    当前容器是否包含指定的节点对象。

  • 参数

    • context: Context

      The rendering context reference.

    • x: number

      The X-axis coordinate.

    • y: number

      The Y-axis coordinate.

    返回 void

    Custom update and render display objects. Generally used to extend rendering modes. Please use it reasonably as it may cause inability to render on accelerators. Note: Do not add or remove tree nodes in this function, otherwise it will affect the traversal of tree nodes.

    自定义更新、呈现显示对象。一般用来扩展渲染模式,请合理使用,可能会导致在加速器上无法渲染。 注意: 不要在此函数内增加或删除树节点,否则会对树节点遍历造成影响。

  • 参数

    • canvasWidth: number

      The width of the canvas.

    • canvasHeight: number

      The height of the canvas.

    • offsetX: number

      The X-axis offset for drawing.

    • offsetY: number

      The Y-axis offset for drawing.

    返回 HTMLCanvas

    The HTMLCanvas object.

    Draws the current Sprite to a Canvas and returns an HtmlCanvas object. The drawing result can be used as an image source to be drawn into other Sprites. It can also obtain the original image data, send it to the server, or save it as an image to achieve a screenshot effect.

    绘制当前 Sprite 到 Canvas 上,并返回一个 HtmlCanvas 对象。 绘制的结果可以当作图片源,再次绘制到其他 Sprite 里面。也可以获取原始图片数据,发给服务器或者保存为图片,从而实现截图效果。

  • 参数

    • canvasWidth: number

      The width of the canvas.

    • canvasHeight: number

      The height of the canvas.

    • offsetX: number

      The X-axis offset for drawing.

    • offsetY: number

      The Y-axis offset for drawing.

    • rt: RenderTexture2D = null

      The render target.

    • isDrawRenderRect: boolean = true

      A boolean indicating whether to draw the render rectangle. When true, it starts drawing from (0,0) of the render texture and subtracts the offset of the cache rectangle. When false, it keeps the sprite's original relative position for drawing.

    • flipY: boolean = false

      Optional. If true, the texture will be flipped vertical. Default is false.

    返回 RenderTexture2D

    The drawn RenderTexture2D object.

    Draws the current object to a RenderTexture2D object.

    绘制当前对象到一个 Texture 对象上。

  • 参数

    • canvasWidth: number

      The width of the canvas.

    • canvasHeight: number

      The height of the canvas.

    • offsetX: number

      The X-axis offset for drawing.

    • offsetY: number

      The Y-axis offset for drawing.

    • rt: RenderTexture2D = null

      The render target.

    • isDrawRenderRect: boolean = true

      A boolean indicating whether to draw the render rectangle. When true, it starts drawing from (0,0) of the render texture and subtracts the offset of the cache rectangle. When false, it keeps the sprite's original relative position for drawing.

    返回 RenderTexture2D | Texture

    The drawn Texture or RenderTexture2D object.

    Draws the current object to a Texture object.

    绘制当前对象到一个 Texture 对象上。

  • 参数

    • 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.

    派发事件。

  • 类型参数

    参数

    • name: string

      The name of the child node to find.

    • 可选classType: new (...args: any[]) => T

      The type of the child node.

    返回 T

    The child node with the specified name.

    Recursively find child nodes, but will not search nodes inside Prefabs.

    递归查找子节点,但不会查找Prefab内部的节点。

  • 参数

    • delay: number

      The interval between executions, in frames.

    • caller: any

      The execution scope of the callback function (this).

    • method: Function

      The callback function.

    • args: any[] = null

      The parameters passed to the callback function.

    • coverBefore: boolean = true

      Whether to override the previous delayed execution. The default value is true.

    返回 void

    Repeatedly executes a callback function at a fixed interval based on frame rate.

    基于帧率,定时重复执行回调函数。功能同Laya.timer.frameLoop()。

  • 参数

    • delay: number

      The delay time, in frames.

    • caller: any

      The execution scope of the callback function (this).

    • method: Function

      The callback function.

    • args: any[] = null

      The parameters passed to the callback function.

    • coverBefore: boolean = true

      Whether to override the previous delayed execution. The default value is true.

    返回 void

    Executes a callback function once after a specified delay based on frame rate.

    基于帧率,在指定延迟时间后执行一次回调函数。功能同Laya.timer.frameOnce()。

  • 参数

    • point: Point

      The point in the parent container coordinate system.

    返回 Point

    The converted point in the local coordinate system.

    Converts the coordinates in the parent container coordinate system to the coordinates in the local coordinate system.

    将父容器坐标系坐标转换到本地坐标系。

  • 类型参数

    参数

    • name: string

      The name of the child node.

    • 可选classType: new (...args: any[]) => T

    返回 T

    The child node with the specified name, or null if not found.

    Get a child node by its name.

    根据子节点的名字获取子节点对象。

  • 类型参数

    参数

    • index: number

      The index of the child node.

    • 可选classType: new (...args: any[]) => T

    返回 T

    The child node at the specified index, or null if the index is out of range.

    Get a child node by its index.

    根据子节点的索引位置获取子节点对象。

  • 类型参数

    参数

    • name: string
    • 可选classType: new (...args: any[]) => T

    返回 T

    Same as getChild,recommended to use getChild

    同getChild,推荐使用getChild

  • 类型参数

    参数

    • path: String

      The path of the child node.

    • 可选classType: new (...args: any[]) => T

      The type of the child node.

    返回 T

    The child node with the specified path.

    Get the first child node with the specified path. e.g. getChildByPath("A.B.C") is similar to getChild("A") followed by getChild("B") followed by getChild("C").

    获取具有指定路径的第一个子节点。例如 getChildByPath("A.B.C") 类似于 getChild("A") 后跟 getChild("B") 后跟 getChild("C")。

  • 参数

    • 可选recursive: boolean

      是否递归获取所有子对象的包围盒

    • 可选ignoreInvisibles: boolean

      是否忽略不可见对象

    • 可选ignoreScale: boolean

      是否忽略缩放

    • 可选out: Rectangle

      (可选)计算结果输出对象

    返回 Rectangle

    包围盒

    获取孩子的包围盒

    Get the bounding box of the child

  • 类型参数

    参数

    • componentType: new () => T

      The type of the component.

    返回 T

    The component instance.

    Get a component instance by type. Returns null if not found.

    根据类型获取组件实例。如果没有找到则返回null。

  • 参数

    • 可选realSize: boolean

      (Optional) Use the actual size of the image, default is false.

    • 可选out: Rectangle

      (Optional) Rectangle object for output.

    返回 Rectangle

    A Rectangle object representing the obtained display area.

    Returns the display area of the drawing object (Graphics) in this instance, excluding child objects.

    返回此实例中绘图对象(Graphics)的显示区域,不包括子对象。

  • 返回 number

    Get the time elapsed since the current frame started, in milliseconds. This can be used to judge the time consumption within functions, reasonably control the processing time of each frame function, avoid doing too much in one frame, and process complex calculations across frames, which can effectively reduce frame rate fluctuations.

    获得距当前帧开始后,过了多少时间,单位为毫秒。 可以用来判断函数内时间消耗,通过合理控制每帧函数处理消耗时长,避免一帧做事情太多,对复杂计算分帧处理,能有效降低帧率波动。

  • 参数

    • point: Point

      The global coordinate point.

    • 可选createNewPoint: boolean

      (Optional) Whether to create a new Point object as the return value. The default is false, which uses the input point object as the return value to reduce object creation overhead.

    • 可选globalNode: Sprite

      The global node, default is Laya.stage.

    返回 Point

    The converted local coordinate point.

    Converts the global coordinates relative to the stage to the local coordinates.

    把stage的全局坐标转换为本地坐标。

  • 参数

    • flag: number

      The hide flag to check.

    返回 boolean

    Whether the node has the specified hide flag.

    Check whether the node has a specific hide flag.

    检查节点是否具有特定的隐藏标志。

  • 参数

    • 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 对象是否为特定事件类型注册了任何侦听器。

  • 参数

    • x: number

      Global x-coordinate.

    • y: number

      Global y-coordinate.

    返回 boolean

    Indicates whether the point is inside the object.

    Checks whether a point is within this object.

    检测某个点是否在此对象内。

  • 参数

    • node: Node

      The node to check.

    返回 boolean

    True if this node is an ancestor of the given node, false otherwise.

    Check if this node is an ancestor of the given node.

    检查本节点是否是某个节点的上层节点。

  • 参数

    • url: string

      The image URL.

    • 可选complete: Handler

      (Optional) The callback function when loading is complete.

    返回 this

    Returns the Sprite object itself.

    Load and display an image. Equivalent to loading the image and then setting the texture property. Note: calling this method multiple times will only display one image.

    加载并显示一个图片。相当于加载图片后,设置texture属性。注意:多次调用,只会显示一个图片。

  • 参数

    • point: Point

      The local coordinate point.

    • 可选createNewPoint: boolean

      (Optional) Whether to create a new Point object as the return value. The default is false, which uses the input point object as the return value to reduce object creation overhead.

    • 可选globalNode: Sprite

      The global node, default is Laya.stage

    返回 Point

    The converted global coordinate point.

    Converts the local coordinates to the global coordinates relative to the stage.

    把本地坐标转换为相对stage的全局坐标。

  • 参数

    • type: string

      The type of event.

    • listener: Function

      The listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Remove a listener from the EventDispatcher object.

    从 EventDispatcher 对象中删除侦听器。

  • 参数

    • type: string

      The type of event.

    • caller: any

      The execution scope of the event listener function.

    • 可选listener: Function

      The listener function.

    • 可选args: any[]

    返回 EventDispatcher

    This EventDispatcher object.

    Remove a listener from the EventDispatcher object.

    从 EventDispatcher 对象中删除侦听器。

  • 参数

    • 可选type: string

      (Optional) The type of event. If the value is null, all types of listeners on this object are removed.

    返回 EventDispatcher

    This EventDispatcher object.

    Remove all listeners of the specified event type from the EventDispatcher object.

    从 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 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知。

  • 返回 void

    The callback function that is executed when the component is activated, at which point all nodes and components have been created. This is a virtual method that needs to be overridden in the subclass.

    组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次。 此方法为虚方法,使用时重写覆盖即可。

  • 参数

    • 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

    The callback function when the node is destroyed. This is a virtual method. You can override it for custom logic when the node is about to be destroyed.

    节点被销毁时执行的回调函数。此方法为虚方法,使用时重写覆盖即可。

  • 返回 void

    The callback function that is executed when the component is disabled, such as when a node is removed from the stage. This is a virtual method that needs to be overridden in the subclass.

    组件被禁用时执行,比如从节点从舞台移除后。 此方法为虚方法,使用时重写覆盖即可。

  • 返回 void

    The callback function that is executed when the component is enabled, such as when a node is added to the stage. This is a virtual method that needs to be overridden in the subclass.

    组件被启用后执行,比如节点被添加到舞台后。 此方法为虚方法,使用时重写覆盖即可。

  • 参数

    • type: number = SpriteConst.REPAINT_CACHE

      The type of repaint. Default is SpriteConst.REPAINT_CACHE.

    返回 void

    Repaint the parent node. When cacheAs is enabled, set all parent object caches to invalid.

    重新绘制父节点。启用 cacheAs 时,设置所有父对象缓存失效。

  • 参数

    • x: number

      X-axis pivot point.

    • y: number

      Y-axis pivot point.

    返回 this

    The object itself.

    Set the pivot point. Equivalent to setting the pivotX and pivotY properties separately. Since the return value is the Sprite object itself, you can use the following syntax: spr.pivot(...).pos(50, 100);

    设置轴心点。相当于分别设置pivotX和pivotY属性。 因为返回值为Sprite对象本身,所以可以使用如下语法:spr.pivot(...).pos(50, 100);

  • 参数

    • x: number

      X-axis coordinate.

    • y: number

      Y-axis coordinate.

    返回 this

    The object itself.

    Set the position. Equivalent to setting the x and y properties separately. Since the return value is the Sprite object itself, you can use the following syntax: spr.pos(...).scale(...);

    设置坐标位置。相当于分别设置x和y属性。 因为返回值为Sprite对象本身,所以可以使用如下语法:spr.pos(...).scale(...);

  • 参数

    • x: number
    • y: number
    • speedMode: boolean

    返回 this

    speedMode参数已经弃用。

  • 参数

    • index: number

      The index of the child node.

    • 可选destroy: boolean

    返回 Node

    The removed node.

    Remove a child node by its index.

    根据子节点索引位置,删除对应的子节点对象。

  • 参数

    • name: string

      The name of the child node.

    • 可选destroy: boolean

    返回 Node

    The removed node.

    Remove a child node by its name.

    根据子节点名字删除对应的子节点对象,如果找不到不会抛出异常。

  • 参数

    • 可选beginIndex: number

      The begin index.

    • 可选endIndex: number

      The end index.

    • 可选destroy: boolean

    返回 void

    The node itself.

    Remove all children from this node.

    删除指定索引区间的所有子对象。

  • 参数

    • context2D: Context

      The rendering context

    • x: number

      The x-axis coordinate

    • y: number

      The y-axis coordinate

    返回 void

    Render all display objects on the stage

    渲染舞台上的所有显示对象

  • 参数

    • type: number = SpriteConst.REPAINT_CACHE

      The redraw type.

    返回 void

    Redraw the Sprite and invalidate its own and parent's cache after setting cacheAs.

    重新绘制,cacheAs后,设置自己和父对象缓存失效。

  • 参数

    • method: Function

      The name of the callback function to be executed, such as functionName.

    返回 void

    If there are callback functions delayed by callLater, they will be executed immediately.

    如果有通过 callLater 延迟执行的回调函数,将立即执行它们。

  • 参数

    • x: number

      X-axis scale ratio.

    • y: number

      Y-axis scale ratio.

    返回 this

    The object itself.

    Set the scale. Equivalent to setting the scaleX and scaleY properties separately. Since the return value is the Sprite object itself, you can use the following syntax: spr.scale(...).pos(50, 100);

    设置缩放。相当于分别设置scaleX和scaleY属性。 因为返回值为Sprite对象本身,所以可以使用如下语法:spr.scale(...).pos(50, 100);

  • 参数

    • x: number
    • y: number
    • speedMode: boolean

    返回 this

    speedMode参数已经弃用。

  • 类型参数

    参数

    • node: T

      The child node to set the index for.

    • index: number

      The new index of the child node.

    返回 T

    The child node itself.

    Set the index of a child node.

    设置子节点的索引位置。

  • 参数

    • value: Graphics

      The Graphics object to set.

    • transferOwnership: boolean

      Whether to set the Graphics object to the belonging node (i.e., transfer the ownership of the Graphics object to the Sprite). If true, the Sprite will be responsible for destroying the Graphics object when it's no longer needed.

    返回 void

    Set the Graphics object for drawing.

    设置用于绘制的 Graphics 对象。

  • 参数

    • screenWidth: number

      The width of the screen.

    • screenHeight: number

      The height of the screen.

    返回 void

    Set the screen size. The scene will adapt to the screen size. This method can be called dynamically to change the game display size.

    设置屏幕大小,场景会根据屏幕大小进行适配。可以动态调用此方法,来更改游戏显示的大小。

  • 参数

    • screenWidth: number

      The width of the screen

    • screenHeight: number

      The height of the screen

    • screenMode: string

      The screen mode. "none" is the default value, "horizontal" for landscape mode, "vertical" for portrait mode

    返回 {
        canvasHeight: number;
        canvasWidth: number;
        scaleX: number;
        scaleY: number;
        stageHeight: number;
        stageWidth: number;
    }

    Set screen size for scene rotation, required by layaverse

    设置场景旋转的屏幕大小,layaverse 需要

  • 参数

    返回 void

    Set the bounds of the object. If set, getBounds will not be used to calculate the bounds. Proper use can improve performance.

    设置对象的边界大小,如果设置,则不再通过getBounds计算边界。合理使用能提高性能。

  • 参数

    • width: number

      Width value.

    • height: number

      Height value.

    返回 this

    The object itself.

    Set the size. Equivalent to setting the width and height properties separately. Since the return value is the Sprite object itself, you can use the following syntax: spr.size(...).pos(50, 100);

    设置宽高。相当于分别设置width和height属性。 因为返回值为Sprite对象本身,所以可以使用如下语法:spr.size(...).pos(50, 100);

  • 参数

    • x: number

      Horizontal skew angle.

    • y: number

      Vertical skew angle.

    返回 this

    The object itself.

    Set the skew angle. Equivalent to setting the skewX and skewY properties separately. Since the return value is the Sprite object itself, you can use the following syntax: spr.skew(...).pos(50, 100);

    设置倾斜角度。相当于分别设置skewX和skewY属性。 因为返回值为Sprite对象本身,所以可以使用如下语法:spr.skew(...).pos(50, 100);

  • 参数

    • 可选area: Rectangle

      (Optional) The drag area, which is the active area of the object's registration point (excluding the object's width and height).

    • 可选hasInertia: boolean

      (Optional) Whether the object has inertia when the mouse is released. The default is false.

    • 可选elasticDistance: number

      (Optional) The distance value of the elastic effect. A value of 0 means no elastic effect. The default is 0.

    • 可选elasticBackTime: number

      (Optional) The bounce-back time for the elastic effect in milliseconds. The default is 300 milliseconds.

    • 可选data: any

      (Optional) The data carried by the drag event.

    • 可选ratio: number

      (Optional) The inertia damping coefficient, which affects the strength and duration of inertia.

    返回 void

    Starts dragging this object.

    开始拖动此对象。

  • 参数

    • delay: number

      The interval between executions, in milliseconds.

    • caller: any

      The execution scope of the callback function (this).

    • method: Function

      The callback function.

    • args: any[] = null

      The parameters passed to the callback function.

    • coverBefore: boolean = true

      Whether to override the previous delayed execution. The default value is true.

    • jumpFrame: boolean = false

      Whether the callback should be executed when the timer jumps frames. The default value is false. If set to true, the callback will be executed multiple times in a single frame if possible, for performance reasons.

    返回 void

    Repeatedly execute a callback function at a fixed interval. This is a wrapper of the loop method in the timer property of the node.

    定时重复执行某函数。这是对节点 timer 属性的 loop 方法的封装。

  • 参数

    • delay: number

      The delay time, in milliseconds.

    • caller: any

      The execution scope of the callback function (this).

    • method: Function

      The callback function.

    • args: any[] = null

      The parameters passed to the callback function.

    • coverBefore: boolean = true

      Whether to override the previous delayed execution. The default value is true.

    返回 void

    Executes a callback function once after a specified delay.

    在指定延迟时间后执行一次回调函数。功能同Laya.timer.once()。

  • 参数

    • point: Point

      The local coordinate point.

    返回 Point

    The converted point in the parent container coordinate system.

    Converts the coordinates in the local coordinate system to the coordinates in the parent container coordinate system.

    将本地坐标系坐标转换到父容器坐标系。

  • 参数

    • 可选delay: boolean

      If true, the change will be executed with a delay

    返回 void

    Update the canvas size

    更新canvas大小

  • 参数

    • url: string

      The image URL.

    返回 Sprite

    Returns a new Sprite object.

    Create a new Sprite object based on the image URL to load and display the image.

    根据图片地址创建一个新的 Sprite 对象用于加载并显示此图片。