Relative layout Component.
相对布局组件
Extra data of the node.
组件的额外数据。IDE内部使用。
Unique identifier for the component.
组件的唯一标识。
Whether the component is a singleton, meaning only one instance of this type of script can be added to the same node.
是否为单例,即同一个节点只能添加此类型的脚本一次。
Gets the owner Node to which the component belongs.
获取组件所属的 Node 节点。
Whether the script can run in the IDE environment.
是否可以在 IDE 环境中运行。
The path of the script file.
脚本文件的路径。
静态
An static instance of a Widget that has been initialized.
一个已初始化的 Widget 静态实例。
whether the component has been awakened.
组件是否已经被唤醒。
The distance from the bottom edge, in pixels.
距底边的距离(以像素为单位)。
The distance from the horizontal center axis, in pixels.
距水平方向中心轴的距离(以像素为单位)。
The distance from the vertical center axis, in pixels.
距垂直方向中心轴的距离(以像素为单位)。
whether the component has been destroyed.
组件是否已经被销毁。
whether the component is enabled.
是否启用组件。
The hide flags that determine the hiding behavior of the component.
确定组件隐藏行为的标志。
The unique identifier for the component.
The distance from the left edge, in pixels.
距左边的距离(以像素为单位)。
The distance from the right edge, in pixels.
距右边的距离(以像素为单位)。
The distance from the top edge, in pixels.
距顶边的距离(以像素为单位)。
Destroy components
销毁组件
The hide flag to check for.
Checks if the component has a specific hide flag set.
检查组件是否设置了特定的隐藏标志。
Called after the component is added to a node. Unlike Awake, onAdded is called even if the node is not active.
组件被添加到节点后调用,与 onAwake 不同的是,即使节点未激活也会调用 onAdded。
Executed after the component is activated. At this point, all nodes and components have been created. This method is executed only once.
组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次。
Executed when the node is destroyed manually.
手动调用节点销毁时执行。
Executed when the component is disabled, such as when the node is removed from the stage.
组件被禁用时执行,比如从节点从舞台移除后。
Executed after the component is enabled, such as when the node is added to the stage.
组件被启用后执行,比如节点被添加到舞台后。
可选
Executed every frame during the late update phase, after the update phase.
每帧更新时执行,在 late update 阶段,update 阶段之后。
Executed after rendering.
渲染之后执行。
Executed before rendering.
渲染之前执行。
Resets the boundaries and center coordinates of the object to null.
将对象的边界和中心坐标重置为 null。
Executed once, before the first update.
在第一次执行 update 之前执行,只会执行一次。
Executed every frame during the update phase. Avoid writing complex loop logic or using the getComponent method here.
每帧更新时执行,在 update 阶段。尽量不要在这里写大循环逻辑或使用 getComponent 方法。
Recalculate layout
重新计算布局
En
Relative layout Component.
Zh
相对布局组件