Use the HScrollBar (horizontal ScrollBar) control to control the displayed data portion when there is too much data to display completely in the display area.

使用 HScrollBar(水平 ScrollBar)控件,可以在因数据太多而不能在显示区域完全显示时控制显示的数据部分。

层级 (查看层级一览)

构造函数

属性

访问器

方法

构造函数

属性

_skinBaseUrl: string

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

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

autoHide: boolean = false

A boolean value that specifies whether to automatically hide the scrollbar when it is not in use, default is false.

一个布尔值,指定是否在无需滚动时自动隐藏滚动条,默认值为false。

bottomMoveLimit: number = 0

The bottom movement limit for the scrollbar. When this limit is reached, the 'dragBottomLimit' event is dispatched. This can be used in conjunction with the stopMoveLimit() method to allow developers to perform dynamic data updates and other operations.

底部移动限制。当达到此限制时,会触发 'dragBottomLimit' 事件。 它可以与 stopMoveLimit() 方法结合使用,以便开发者执行动态数据更新和其他操作。

changeHandler: Handler

Callback when scrolling changes, return value parameter.

滚动变化时回调,回传value参数。

disableDrag: boolean = false

Determines whether dragging of the content is disabled when the 'stopMoveLimit' method is called.

确定在调用 'stopMoveLimit' 方法时是否禁止内容的拖拽。

downButton: Button

The down button.

下按钮。

elasticBackTime: number = 500

The time in milliseconds for the rubber band effect to rebound.

橡皮筋回弹时间,单位为毫秒。

elasticDistance: number = 0

The limit distance for the rubber band effect, 0 means no rubber band effect.

橡皮筋效果极限距离,0表示没有橡皮筋效果。

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

isLockedFun: Function
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.

节点名称。

rollRatio: number = 0.97

The ratio of scroll decay.

滚动衰减系数

scaleBar: boolean = true

Indicates whether to scale the size of the scrollbar, default is true.

是否缩放滑动条的大小,默认值为true。

slider: Slider

slider.

滑动条。

stopMoveLimit: Function

Overloading method for pausing scrolling

暂停滚动的重载方法

tag: string

Node tag.

节点标签。

topMoveLimit: number = 0

The top movement limit for the scrollbar. When this limit is reached, the 'dragTopLimit' event is dispatched. This can be used in conjunction with the stopMoveLimit() method to allow developers to perform dynamic data updates and other operations.

顶部移动限制。当达到此限制时,会触发 'dragTopLimit' 事件。 它可以与 stopMoveLimit() 方法结合使用,以便开发者执行动态数据更新和其他操作。

triggerDownDragLimit: Function

Function to be called when the scrollbar is dragged down past its limit.

当滚动条向下拖拽超过其限制时调用的函数。

triggerUpDragLimit: Function

Function to be called when the scrollbar is dragged up past its limit.

当滚动条向上拖拽超过其限制时调用的函数。

upButton: Button

The up button.

上按钮。

easeFunction: (t: number, b: number, c: number, d: number) => number = Ease.sineOut

Sets the global easing function for scrolling speed changes.

设置全局的滚动速度变化曲线函数

访问器

  • 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 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 bottom(): number

    返回 number

    The vertical distance in pixels from the bottom edge of the component to the bottom edge of its parent. This property is used for relative layout, which means the component's position is always relative to its parent's bottom edge.

    组件底边距离父节点底边的垂直距离(以像素为单位)。 此属性用于相对布局,意味着组件的位置始终相对于父节点的底部边缘。

  • set bottom(value: number): void

    参数

    • value: number

    返回 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 centerX(): number

    返回 number

    The distance in pixels from the center axis of this object in the horizontal direction to the center line of the parent container in the horizontal direction.

    在父容器中,此对象的水平方向中轴线与父容器的水平方向中心线的距离(以像素为单位)。

  • set centerX(value: number): void

    参数

    • value: number

    返回 void

  • get centerY(): number

    返回 number

    The distance in pixels from the center axis of this object in the vertical direction to the center line of the parent container in the vertical direction.

    在父容器中,此对象的垂直方向中轴线与父容器的垂直方向中心线的距离(以像素为单位)。

  • set centerY(value: number): void

    参数

    • value: number

    返回 void

  • 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 dataSource(): any

    返回 any

    Data assignment, control UI display logic by assigning UI. Simple assignment will change the default properties of the component, and curly braces can be used to assign any property of the component.

    数据源赋值,通过对UI赋值来控制UI显示逻辑。 简单赋值会更改组件的默认属性,使用大括号可以指定组件的任意属性进行赋值。

    //Default property assignment
    dataSource = {label1: "Label changed", checkbox1: true};//(Change the text property value of label1, change the selected property of checkbox1).
    //Any property assignment
    dataSource = {label2: {text:"Label changed",size:14}, checkbox2: {selected:true,x:10}};
  • set dataSource(value: any): void

    参数

    • value: any

    返回 void

  • get destroyed(): boolean

    返回 boolean

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

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

  • get disabled(): boolean

    返回 boolean

    Whether the page is disabled, it will turn gray and disable the mouse when set to true.

    是否禁用页面,设置为true后,会变灰并且禁用鼠标。

  • set disabled(value: boolean): void

    参数

    • value: boolean

    返回 void

  • 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 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 graphics(): Graphics

    返回 Graphics

    The drawing object, which encapsulates the interfaces for drawing bitmaps and vector graphics. All drawing operations of Sprite are implemented through Graphics.

    绘图对象。封装了绘制位图和矢量图的接口,Sprite 的所有绘图操作都是通过 Graphics 实现的。

  • set graphics(value: Graphics): void

    参数

    返回 void

  • get hide(): boolean

    返回 boolean

    Determines whether the scrollbar is hidden. If true, the scrollbar is not displayed, but scrolling functions remain active. Default is false.

    是否隐藏滚动条,设置为 true 时,不显示滚动条,但可以正常滚动,默认为 false。

  • set hide(value: boolean): void

    参数

    • value: boolean

    返回 void

  • 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 isVertical(): boolean

    返回 boolean

    Indicates whether the scrollbar is vertical. If true, the scrollbar is vertical; otherwise, it is horizontal. Default value: true.

    滚动条是否为垂直滚动。如果值为true,则为垂直滚动,否则为水平滚动。 默认值为:true。

  • set isVertical(value: boolean): void

    参数

    • value: boolean

    返回 void

  • get lastOffset(): number

    返回 number

    Gets the last offset value used during the scrollbar's movement.

    获取滚动条在移动过程中使用的最后偏移量。

  • get left(): number

    返回 number

    The horizontal distance in pixels from the left edge of the component to the left edge of its parent. This property is used for relative layout, which means the component's position is always relative to its parent's left edge.

    组件左边距离父节点左边的水平距离(以像素为单位)。 此属性用于相对布局,意味着组件的位置始终相对于父节点的左侧边缘。

  • set left(value: number): void

    参数

    • value: number

    返回 void

  • 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 mouseWheelEnable(): boolean

    返回 boolean

    Specifies whether mouse wheel scrolling is enabled. Default is true.

    是否启用鼠标滚轮滚动,默认值为 true,表示启用。

  • set mouseWheelEnable(value: boolean): void

    参数

    • value: boolean

    返回 void

  • get mouseX(): number

    返回 number

    The X-axis coordinate of the mouse in this object's coordinate system.

    鼠标在此对象坐标系上的 X 轴坐标信息。

  • get mouseY(): number

    返回 number

    The Y-axis coordinate of the mouse in this object's coordinate system.

    鼠标在此对象坐标系上的 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 right(): number

    返回 number

    The horizontal distance in pixels from the right edge of the component to the right edge of its parent. This property is used for relative layout, which means the component's position is always relative to its parent's right edge.

    组件右边距离父节点右边的水平距离(以像素为单位)。 此属性用于相对布局,意味着组件的位置始终相对于父节点的右侧边缘。

  • set right(value: number): void

    参数

    • value: number

    返回 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 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 scrollSize(): number

    返回 number

    The minimum unit for page scrolling when the scrollbar track is pressed.

    按下滚动条轨道时页面滚动的最小单位

  • set scrollSize(value: number): void

    参数

    • value: number

    返回 void

  • get showButtons(): boolean

    返回 boolean

    Specifies whether the up and down buttons are displayed. Default is true.

    是否显示向上和向下的按钮,默认值为 true,表示显示。

  • set showButtons(value: boolean): void

    参数

    • value: boolean

    返回 void

  • get sizeGrid(): string

    返回 string

    The size grid of the texture. The size grid is a 3x3 division of the texture, allowing it to be scaled without distorting the corners and edges. The array contains five values representing the top, right, bottom, and left margins, and whether to repeat the fill (0: no repeat, 1: repeat). The values are separated by commas. For example: "6,6,6,6,1".

    纹理的九宫格数据。 九宫格是一种将纹理分成3x3格的方式,使得纹理缩放时保持角和边缘不失真。 数组包含五个值,分别代表上边距、右边距、下边距、左边距以及是否重复填充(0:不重复填充,1:重复填充)。 值以逗号分隔。例如:"6,6,6,6,1"。

  • set sizeGrid(value: string): void

    参数

    • value: string

    返回 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 thumbPercent(): number

    返回 number

    Slider length ratio, with a value between 0 and 1.

    滑条长度比例,值为:(0-1)。

  • set thumbPercent(value: number): void

    参数

    • value: number

    返回 void

  • get tick(): number

    返回 number

    The minimum increment unit for the slider tick value, with a default value of 1.

    滑动条刻度值的最小变动单位,默认值为1。

  • set tick(value: number): void

    参数

    • value: number

    返回 void

  • get toolTip(): any

    返回 any

    Mouse hover prompt. It can be assigned as text String or function Handler to implement custom style mouse prompts and parameter carrying, etc.

    鼠标悬停提示。 可以赋值为文本String或函数Handler,用来实现自定义样式的鼠标提示和参数携带等。

    private var _testTips:TestTipsUI = new TestTipsUI();
    private function testTips():void {
    //Simple mouse prompt
    btn2.toolTip = "This is a mouse tip<b>Bold</b><br>New line";
    //Custom mouse prompt
    btn1.toolTip = showTips1;
    //Custom mouse prompt with parameters
    clip.toolTip = new Handler(this,showTips2, ["clip"]);
    }
    private function showTips1():void {
    _testTips.label.text = "This is button[" + btn1.label + "]";
    tip.addChild(_testTips);
    }
    private function showTips2(name:String):void {
    _testTips.label.text = "This is " + name;
    tip.addChild(_testTips);
    }
  • set toolTip(value: any): void

    参数

    • value: any

    返回 void

  • get top(): number

    返回 number

    The vertical distance in pixels from the top edge of the component to the top edge of its parent. This property is used for relative layout, which means the component's position is always relative to its parent's top edge.

    组件顶边距离父节点顶边的垂直距离(以像素为单位)。 此属性用于相对布局,意味着组件的位置始终相对于父节点的顶部边缘。

  • set top(value: number): void

    参数

    • value: number

    返回 void

  • get touchScrollEnable(): boolean

    返回 boolean

    Specifies whether touch scrolling is enabled. Default is true.

    是否启用触摸滚动,默认值为 true,表示启用。

  • set touchScrollEnable(value: boolean): void

    参数

    • value: boolean

    返回 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 the object is visible. The default value is true. If set to false, the node will not be rendered.

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

  • set visible(value: boolean): void

    参数

    • value: boolean

    返回 void

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

    设置节点的特定位。

  • 参数

    • url: string

      The URL of the skin to be set.

    返回 Promise<void>

    Asynchronously sets the skin for the scrollbar and its components.

    异步设置滚动条及其组件的皮肤。

  • 类型参数

    参数

    • 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()。

  • 返回 void

    Recalculate and update the layout of the object. This method will reset the horizontal and vertical layout of the object based on the _widget property. It will calculate the position and size of the object according to the layout rules specified by the _widget property, such as left, right, top, bottom, centerX, and centerY.

    重新计算并更新对象的布局。 这个方法将根据 _widget 属性重置对象的水平和垂直布局。 它会根据 _widget 属性指定的布局规则,如 leftrighttopbottomcenterXcenterY,计算对象的位置和大小。

  • 参数

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

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

  • 类型参数

    参数

    • 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

  • 参数

    • 可选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)的显示区域,不包括子对象。

  • 参数

    • 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

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

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

  • 参数

    • ctx: Context

      The rendering context reference.

    • x: number

      The X-axis coordinate.

    • y: number

      The Y-axis coordinate. The meaning of x and y is complex. Without rotation, it is the world position of the current node. If any parent node has rotation, x and y will be reset to [0,0] there and then accumulated again. So, x and y can be considered as the cumulative value from the current node to a node with rotation (or the root node).

    返回 void

    Update and render the display object. Called by the system.

    更新、呈现显示对象。由系统调用。

  • 参数

    • 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参数已经弃用。

  • 参数

    • 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 对象。

  • 参数

    • min: number

      The minimum position value of the scrollbar.

    • max: number

      The maximum position value of the scrollbar.

    • 可选value: number

      The current position value of the scrollbar.

    返回 void

    Sets the information for the scrollbar.

    设置滚动条信息。

  • 参数

    返回 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.

    开始拖动此对象。

  • 返回 void

    Forces a drag action on the scrollbar. Normally, dragging can only be done by holding the scrollbar itself. If you need to force drag outside the scrollbar object, you can achieve this by calling this method. For example, if the mouse is continuously held on a button object outside the scrollbar and this method is called, then sliding the mouse will have the same effect as dragging the scrollbar.

    强制拖拽滚动条; 常规情况下只能是按住滚动条本身才可以拖拽,如果需要在滚动条对象之外进行强制拖拽,则可以通过调用此方法来实现。 例如,当鼠标持续按住滚动条之外的某个按钮对象时,调用了该方法,然后进行滑动,也可以实现按住滚动条对象滑动的效果。

  • 参数

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

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

  • 参数

    • 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 对象用于加载并显示此图片。