Files
cocos-engine/cocos/2d/framework/ui-transform.ts

817 lines
28 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
Copyright (c) 2017-2023 Xiamen Yaji Software Co., Ltd.
http://www.cocos.com
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
import { ccclass, help, executeInEditMode, executionOrder, menu, tooltip, displayOrder, serializable, disallowMultiple } from 'cc.decorator';
import { EDITOR } from 'internal:constants';
import { warnID } from '@base/debug';
import { Mat4, Rect, Size, Vec2, Vec3, approx, EPSILON } from '@base/math';
import { Component, Node } from '../../scene-graph';
import { geometry, visibleRect } from '../../core';
import { Director, director } from '../../game/director';
import { NodeEventType } from '../../scene-graph/node-event';
import { IMask } from '../../scene-graph/node-event-processor';
import { Mask } from '../components/mask';
const _vec2a = new Vec2();
const _vec2b = new Vec2();
const _vec3a = new Vec3();
const _mat4_temp = new Mat4();
const _matrix = new Mat4();
const _worldMatrix = new Mat4();
const _zeroMatrix = new Mat4(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
const _rect = new Rect();
/**
* @en
* The component of transform in UI.
*
* @zh
* UI 变换组件。
*/
@ccclass('cc.UITransform')
@help('i18n:cc.UITransform')
@executionOrder(110)
@menu('UI/UITransform')
@disallowMultiple
@executeInEditMode
export class UITransform extends Component {
/**
* @en
* Size of the UI node.
*
* @zh
* 内容尺寸。
*/
@displayOrder(0)
@tooltip('i18n:ui_transform.content_size')
get contentSize (): Readonly<Size> {
return this._contentSize;
}
set contentSize (value) {
if (this._contentSize.equals(value)) {
return;
}
if (EDITOR) {
const clone = new Size(this._contentSize);
this._contentSize.set(value);
this.node.emit(NodeEventType.SIZE_CHANGED, clone);
} else {
this._contentSize.set(value);
this.node.emit(NodeEventType.SIZE_CHANGED);
}
this._markRenderDataDirty();
}
/**
* @en
* component width.
* @zh
* 组件宽度。
*/
get width (): number {
return this._contentSize.width;
}
set width (value) {
if (this._contentSize.width === value) {
return;
}
if (EDITOR) {
const clone = new Size(this._contentSize);
this._contentSize.width = value;
this.node.emit(NodeEventType.SIZE_CHANGED, clone);
} else {
this._contentSize.width = value;
this.node.emit(NodeEventType.SIZE_CHANGED);
}
this._markRenderDataDirty();
}
/**
* @en
* component height.
* @zh
* 组件高度。
*/
get height (): number {
return this._contentSize.height;
}
set height (value) {
if (this.contentSize.height === value) {
return;
}
if (EDITOR) {
const clone = new Size(this._contentSize);
this._contentSize.height = value;
this.node.emit(NodeEventType.SIZE_CHANGED, clone);
} else {
this._contentSize.height = value;
this.node.emit(NodeEventType.SIZE_CHANGED);
}
this._markRenderDataDirty();
}
/**
* @en
* Anchor point of the UI node.
*
* @zh
* 锚点位置。
*/
@displayOrder(1)
@tooltip('i18n:ui_transform.anchor_point')
get anchorPoint (): Readonly<Vec2> {
return this._anchorPoint;
}
set anchorPoint (value) {
if (this._anchorPoint.equals(value)) {
return;
}
this._anchorPoint.set(value);
this.node.emit(NodeEventType.ANCHOR_CHANGED, this._anchorPoint);
this._markRenderDataDirty();
}
/**
* @en
* The x-axis anchor of the node.
*
* @zh
* 锚点位置的 X 坐标。
*/
get anchorX (): number {
return this._anchorPoint.x;
}
set anchorX (value) {
if (this._anchorPoint.x === value) {
return;
}
this._anchorPoint.x = value;
this.node.emit(NodeEventType.ANCHOR_CHANGED, this._anchorPoint);
this._markRenderDataDirty();
}
/**
* @en
* The y-axis anchor of the node.
*
* @zh
* 锚点位置的 Y 坐标。
*/
get anchorY (): number {
return this._anchorPoint.y;
}
set anchorY (value) {
if (this._anchorPoint.y === value) {
return;
}
this._anchorPoint.y = value;
this.node.emit(NodeEventType.ANCHOR_CHANGED, this._anchorPoint);
this._markRenderDataDirty();
}
/**
* @en
* Render sequence.
* Note: UI rendering is only about priority.
*
* @zh
* 渲染先后顺序,按照广度渲染排列,按同级节点下进行一次排列。
* @deprecated Since v3.1
*/
get priority (): number {
return this._priority;
}
set priority (value) {
if (this._priority === value) {
return;
}
if (this.node.getComponent('cc.RenderRoot2D')) {
warnID(6706);
return;
}
this._priority = value;
if (this.node.parent) {
UITransform.insertChangeMap(this.node.parent);
}
}
protected _priority = 0;
/**
* @en Get the visibility bit-mask of the rendering camera
* @zh 查找被渲染相机的可见性掩码。
* @deprecated since v3.0
*/
get visibility (): number {
const camera = director.root!.batcher2D.getFirstRenderCamera(this.node);
return camera ? camera.visibility : 0;
}
/**
* @en Get the priority of the rendering camera
* @zh 查找被渲染相机的渲染优先级。
*/
get cameraPriority (): number {
const camera = director.root!.batcher2D.getFirstRenderCamera(this.node);
return camera ? camera.priority : 0;
}
public static EventType = NodeEventType;
@serializable
protected _contentSize = new Size(100, 100);
@serializable
protected _anchorPoint = new Vec2(0.5, 0.5);
public __preload (): void {
this.node._uiProps.uiTransformComp = this;
}
public onLoad (): void {
if (this.node.parent) {
UITransform.insertChangeMap(this.node.parent);
}
}
public onEnable (): void {
this.node.on(NodeEventType.PARENT_CHANGED, this._parentChanged, this);
this._markRenderDataDirty();
}
public onDisable (): void {
this.node.off(NodeEventType.PARENT_CHANGED, this._parentChanged, this);
}
public onDestroy (): void {
this.node._uiProps.uiTransformComp = null;
}
/**
* @en
* Sets the untransformed size of the ui transform.<br/>
* The contentSize remains the same no matter if the node is scaled or rotated.<br/>
* @zh
* 设置节点 UI Transform 的原始大小,不受该节点是否被缩放或者旋转的影响。
*
* @param size @en The size of the UI transform. @zh UI Transform 的 Size 大小。
* @example
* ```ts
* import { Size } from 'cc';
* node.setContentSize(new Size(100, 100));
* ```
*/
public setContentSize(size: Size): void;
/**
* @en
* Sets the untransformed size of the ui transform.<br/>
* The contentSize remains the same no matter if the node is scaled or rotated.<br/>
* @zh
* 设置节点 UI Transform 的原始大小,不受该节点是否被缩放或者旋转的影响。
*
* @param width @en The width of the UI transform. @zh UI Transform 的宽。
* @param height @en The height of the UI transform. @zh UI Transform 的高。
* @example
* ```ts
* import { Size } from 'cc';
* node.setContentSize(100, 100);
* ```
*/
public setContentSize(width: number, height: number): void;
public setContentSize (size: Size | number, height?: number): void {
const locContentSize = this._contentSize;
let locWidth: number;
let locHeight: number;
if (height === undefined) {
size = size as Size;
if (approx(size.width, locContentSize.width, EPSILON) && approx(size.height, locContentSize.height, EPSILON)) {
return;
}
locWidth = size.width;
locHeight = size.height;
} else {
size = size as number;
if (approx(size, locContentSize.width, EPSILON) && approx(height, locContentSize.height, EPSILON)) {
return;
}
locWidth = size;
locHeight = height;
}
if (EDITOR) {
const clone = new Size(this._contentSize);
locContentSize.width = locWidth;
locContentSize.height = locHeight;
this.node.emit(NodeEventType.SIZE_CHANGED, clone);
} else {
locContentSize.width = locWidth;
locContentSize.height = locHeight;
this.node.emit(NodeEventType.SIZE_CHANGED);
}
this._markRenderDataDirty();
}
/**
* @en
* Sets the anchor point in percent. <br/>
* anchor point is the point around which all transformations and positioning manipulations take place. <br/>
* It's like a pin in the node where it is "attached" to its parent. <br/>
* The anchorPoint is normalized, like a percentage. (0,0) means the bottom-left corner and (1,1) means the top-right corner.<br/>
* But you can use values higher than (1,1) and lower than (0,0) too.<br/>
* The default anchor point is (0.5,0.5), so it starts at the center of the node.
*
* @zh
* 设置锚点的百分比。<br>
* 锚点应用于所有变换和坐标点的操作,它就像在节点上连接其父节点的大头针。<br>
* 锚点是标准化的,就像百分比一样。(00) 表示左下角,(11) 表示右上角。<br>
* 但是你可以使用比11更高的值或者比00更低的值。<br>
* 默认的锚点是0.50.5),因此它开始于节点的中心位置。<br>
* 注意Creator 中的锚点仅用于定位所在的节点,子节点的定位不受影响。
*
* @param point @en Node anchor point or node x-axis anchor.
* @zh 节点锚点或节点 x 轴锚。
* @param y @en The y-axis anchor of the node.
* @zh 节点 y 轴锚。
* @example
* ```ts
* import { Vec2 } from 'cc';
* node.setAnchorPoint(new Vec2(1, 1));
* node.setAnchorPoint(1, 1);
* ```
*/
public setAnchorPoint (point: Vec2 | Readonly<Vec2> | number, y?: number): void {
const locAnchorPoint = this._anchorPoint;
if (y === undefined) {
point = point as Vec2;
if ((point.x === locAnchorPoint.x) && (point.y === locAnchorPoint.y)) {
return;
}
locAnchorPoint.x = point.x;
locAnchorPoint.y = point.y;
} else {
if ((point === locAnchorPoint.x) && (y === locAnchorPoint.y)) {
return;
}
locAnchorPoint.x = point as number;
locAnchorPoint.y = y;
}
// this.setLocalDirty(LocalDirtyFlag.POSITION);
// if (this._eventMask & ANCHOR_ON) {
this.node.emit(NodeEventType.ANCHOR_CHANGED, this._anchorPoint);
this._markRenderDataDirty();
// }
}
/**
* @zh UI 空间中的点击测试。
* @en Hit test with point in UI Space.
*
* @param uiPoint point in UI Space.
* @deprecated since v3.5.0, please use `uiTransform.hitTest(screenPoint: Vec2)` instead.
*/
public isHit (uiPoint: Vec2): boolean {
const w = this._contentSize.width;
const h = this._contentSize.height;
const v2WorldPt = _vec2a;
const testPt = _vec2b;
const cameras = this._getRenderScene().cameras;
for (let i = 0; i < cameras.length; i++) {
const camera = cameras[i];
if (!(camera.visibility & this.node.layer)) continue;
// Convert UI Space into World Space.
camera.node.getWorldRT(_mat4_temp);
const m12 = _mat4_temp.m12;
const m13 = _mat4_temp.m13;
const center = visibleRect.center;
_mat4_temp.m12 = center.x - (_mat4_temp.m00 * m12 + _mat4_temp.m04 * m13);
_mat4_temp.m13 = center.y - (_mat4_temp.m01 * m12 + _mat4_temp.m05 * m13);
Mat4.invert(_mat4_temp, _mat4_temp);
Vec2.transformMat4(v2WorldPt, uiPoint, _mat4_temp);
// Convert World Space into Local Node Space.
this.node.getWorldMatrix(_worldMatrix);
Mat4.invert(_mat4_temp, _worldMatrix);
if (Mat4.strictEquals(_mat4_temp, _zeroMatrix)) {
continue;
}
Vec2.transformMat4(testPt, v2WorldPt, _mat4_temp);
testPt.x += this._anchorPoint.x * w;
testPt.y += this._anchorPoint.y * h;
let hit = false;
if (testPt.x >= 0 && testPt.y >= 0 && testPt.x <= w && testPt.y <= h) {
hit = this._maskTest(v2WorldPt);
}
if (hit) {
return true;
}
}
return false;
}
/**
* @zh 屏幕空间中的点击测试。
* @en Hit test with point in Screen Space.
*
* @param screenPoint @en point in Screen Space. @zh 屏幕坐标中的点。
*/
public hitTest (screenPoint: Vec2, windowId = 0): boolean {
const w = this._contentSize.width;
const h = this._contentSize.height;
const v3WorldPt = _vec3a;
const v2WorldPt = _vec2a;
const testPt = _vec2b;
const cameras = this._getRenderScene().cameras;
for (let i = 0; i < cameras.length; i++) {
const camera = cameras[i];
if (!(camera.visibility & this.node.layer) || (camera.window && !camera.window.swapchain)) { continue; }
if (camera.systemWindowId !== windowId) {
continue;
}
// Convert Screen Space into World Space.
Vec3.set(v3WorldPt, screenPoint.x, screenPoint.y, 0); // vec3 screen pos
camera.screenToWorld(v3WorldPt, v3WorldPt);
Vec2.set(v2WorldPt, v3WorldPt.x, v3WorldPt.y);
// Convert World Space into Local Node Space.
this.node.getWorldMatrix(_worldMatrix);
Mat4.invert(_mat4_temp, _worldMatrix);
if (Mat4.strictEquals(_mat4_temp, _zeroMatrix)) {
continue;
}
Vec2.transformMat4(testPt, v2WorldPt, _mat4_temp);
testPt.x += this._anchorPoint.x * w;
testPt.y += this._anchorPoint.y * h;
let hit = false;
if (testPt.x >= 0 && testPt.y >= 0 && testPt.x <= w && testPt.y <= h) {
hit = this._maskTest(v2WorldPt);
}
if (hit) {
return true;
}
}
return false;
}
private _maskTest (pointInWorldSpace: Vec2): boolean {
const maskList = this.node?.eventProcessor?.maskList as IMask[] | undefined;
if (maskList) {
let parent: Node | null = this.node;
const length = maskList.length;
// find mask parent, should hit test it
for (let i = 0, j = 0; parent && j < length; ++i, parent = parent.parent) {
const temp = maskList[j];
if (i === temp.index) {
if (parent === temp.comp.node) {
const comp = temp.comp as Mask;
if (comp && comp._enabled && !comp.isHit(pointInWorldSpace)) {
return false;
}
j++;
} else {
// mask parent no longer exists
maskList.length = j;
break;
}
} else if (i > temp.index) {
// mask parent no longer exists
maskList.length = j;
break;
}
}
}
return true;
}
/**
* @en
* Converts a Point to node (local) space coordinates.
*
* @zh
* 将一个 UI 节点世界坐标系下点转换到另一个 UI 节点 (局部) 空间坐标系,这个坐标系以锚点为原点。
* 非 UI 节点转换到 UI 节点(局部) 空间坐标系,请走 Camera 的 `convertToUINode`。
*
* @param worldPoint @en Point in world space.
* @zh 世界坐标点。
* @param out @en Point in local space.
* @zh 转换后坐标。
* @returns @en Return the relative position to the target node.
* @zh 返回与目标节点的相对位置。
* @example
* ```ts
* const newVec3 = uiTransform.convertToNodeSpaceAR(cc.v3(100, 100, 0));
* ```
*/
public convertToNodeSpaceAR (worldPoint: Vec3, out?: Vec3): Vec3 {
this.node.getWorldMatrix(_worldMatrix);
Mat4.invert(_mat4_temp, _worldMatrix);
if (!out) {
out = new Vec3();
}
return Vec3.transformMat4(out, worldPoint, _mat4_temp);
}
/**
* @en
* Converts a Point in node coordinates to world space coordinates.
*
* @zh
* 将距当前节点坐标系下的一个点转换到世界坐标系。
*
* @param nodePoint @en Point in local space.
* @zh 节点坐标。
* @param out @en Point in world space.
* @zh 转换后坐标。
* @returns @en Returns the coordinates in the UI world coordinate system.
* @zh 返回 UI 世界坐标系。
* @example
* ```ts
* const newVec3 = uiTransform.convertToWorldSpaceAR(3(100, 100, 0));
* ```
*/
public convertToWorldSpaceAR (nodePoint: Vec3, out?: Vec3): Vec3 {
this.node.getWorldMatrix(_worldMatrix);
if (!out) {
out = new Vec3();
}
return Vec3.transformMat4(out, nodePoint, _worldMatrix);
}
/**
* @en
* Returns an axis aligned bounding box of this node in local space coordinate.
* The returned box is relative only to its parent, and it doesn't contain any child nodes.
* The behavior is slightly different with [[getBoundingBoxToWorld]] and [[getBoundingBoxTo]].
*
* @zh
* 返回父节坐标系下的轴向对齐的包围盒。
* 返回的包围盒仅仅只包含当前节点的轴向对齐包围盒,不包含子节点。
* 这个 API 的行为和 [[getBoundingBoxToWorld]] 和 [[getBoundingBoxTo]] 略有不同。
*
* @returns @en An axis aligned bounding box of this node in local space coordinate. @zh 本地坐标系下的包围盒。
* @example
* ```ts
* const boundingBox = uiTransform.getBoundingBox();
* ```
*/
public getBoundingBox (): Rect {
const rect = new Rect();
this._selfBoundingBox(rect);
Mat4.fromSRT(_matrix, this.node.rotation, this.node.position, this.node.scale);
rect.transformMat4(_matrix);
return rect;
}
/**
* @en
* Returns an axis aligned bounding box of this node in world space coordinate.
* The bounding box contains self and active children's world bounding box, and it will eliminate all zero sized nodes.
* @zh
* 返回节点在世界坐标系下的对齐轴向的包围盒AABB
* 该边框包含自身和已激活的子节点的世界边框,但会剔除所有零大小的节点。
* @returns @en An axis aligned bounding box of this node in world space coordinate. @zh 世界坐标系下包围盒。
* @example
* ```ts
* const newRect = uiTransform.getBoundingBoxToWorld();
* ```
*/
public getBoundingBoxToWorld (): Rect {
const rect = new Rect();
const locChildren = this.node.children;
for (let i = 0; i < locChildren.length; ++i) {
const child = locChildren[i];
if (child && child.active) {
const uiTransform = child.getComponent(UITransform);
// Zero sized rect is not accepted
if (uiTransform && uiTransform.contentSize.width && uiTransform.contentSize.height) {
uiTransform._selfBoundingBox(_rect);
_rect.transformMat4(child.worldMatrix);
if (rect.width === 0) {
// Initializing
rect.set(_rect);
} else {
Rect.union(rect, rect, _rect);
}
}
}
}
if (this._contentSize.width && this._contentSize.height) {
this._selfBoundingBox(_rect);
_rect.transformMat4(this.node.worldMatrix);
if (rect.width === 0) {
// Initializing
rect.set(_rect);
} else {
Rect.union(rect, rect, _rect);
}
}
return rect;
}
/**
* @en
* Returns the minimum bounding box in the coordinate system of the target node.
* The result contains the current node and its child node tree, and it will eliminates all zero size nodes.
* E.g. passing an identical matrix will return the world bounding box of the current node tree.
* @zh
* 返回在目标节点坐标系下包含当前包围盒及其子节点包围盒的最小总包围盒,但会剔除所有零大小的节点。
* 如果传入单位矩阵,将得到世界坐标系下的包围盒。
*
* @param targetMat @en The target node's world matrix representing its coordinate system.
* @zh 表示目标节点坐标系的世界矩阵。
* @returns @en The minimum bounding box containing the current bounding box and its child nodes.
* @zh 包含当前节点包围盒及其子节点包围盒的最小包围盒。
*/
public getBoundingBoxTo (targetMat: Mat4): Rect {
const rect = new Rect();
const locChildren = this.node.children;
Mat4.invert(_mat4_temp, targetMat);
for (let i = 0; i < locChildren.length; ++i) {
const child = locChildren[i];
if (child && child.active) {
const uiTransform = child.getComponent(UITransform);
// Zero sized rect is not accepted
if (uiTransform && uiTransform.contentSize.width && uiTransform.contentSize.height) {
uiTransform._selfBoundingBox(_rect);
// Must combine all matrix because rect can only be transformed once.
Mat4.multiply(_matrix, child.worldMatrix, _mat4_temp);
_rect.transformMat4(_matrix);
if (rect.width === 0) {
// Initializing
rect.set(_rect);
} else {
Rect.union(rect, rect, _rect);
}
}
}
}
if (this._contentSize.width && this._contentSize.height) {
this._selfBoundingBox(_rect);
// Must combine all matrix because rect can only be transformed once.
Mat4.multiply(_matrix, this.node.worldMatrix, _mat4_temp);
_rect.transformMat4(_matrix);
if (rect.width === 0) {
// Initializing
rect.set(_rect);
} else {
Rect.union(rect, rect, _rect);
}
}
return rect;
}
/**
* @en
* Compute the corresponding aabb in world space for raycast.
* @zh
* 计算出此 UI_2D 节点在世界空间下的 aabb 包围盒。
* @param out @en The out object of aabb bounding box of the node in world space. @zh 输出节点在世界空间下的 aabb 包围盒。
* @returns @en The aabb bounding box of the node in world space. @zh 节点在世界空间下的 aabb 包围盒。
*/
public getComputeAABB (out?: geometry.AABB): geometry.AABB {
const width = this._contentSize.width;
const height = this._contentSize.height;
_rect.set(
-this._anchorPoint.x * width,
-this._anchorPoint.y * height,
width,
height,
);
_rect.transformMat4(this.node.worldMatrix);
const px = _rect.x + _rect.width * 0.5;
const py = _rect.y + _rect.height * 0.5;
const pz = this.node.worldPosition.z;
const w = _rect.width / 2;
const h = _rect.height / 2;
const l = 0.001;
if (out != null) {
geometry.AABB.set(out, px, py, pz, w, h, l);
return out;
} else {
return new geometry.AABB(px, py, pz, w, h, l);
}
}
protected _selfBoundingBox (out: Rect): Rect {
const width = this._contentSize.width;
const height = this._contentSize.height;
out.set(
-this._anchorPoint.x * width,
-this._anchorPoint.y * height,
width,
height,
);
return out;
}
protected _parentChanged (node: Node): void {
if (this.node.getComponent('cc.RenderRoot2D')) {
return;
}
if (this.node.parent) {
UITransform.insertChangeMap(this.node.parent);
}
}
private _markRenderDataDirty (): void {
const uiComp = this.node._uiProps.uiComp;
if (uiComp) {
uiComp.markForUpdateRenderData();
}
}
private static priorityChangeNodeMap = new Map<string, Node>();
private static insertChangeMap (node: Node): void {
const key = node.uuid;
if (!UITransform.priorityChangeNodeMap.has(key)) {
UITransform.priorityChangeNodeMap.set(key, node);
}
}
private static _sortChildrenSibling (node): void {
const siblings = node.children;
if (siblings) {
siblings.sort((a: Node, b: Node): number => {
const aComp = a._uiProps.uiTransformComp;
const bComp = b._uiProps.uiTransformComp;
const ca = aComp ? aComp._priority : 0;
const cb = bComp ? bComp._priority : 0;
const diff = ca - cb;
if (diff === 0) return a.getSiblingIndex() - b.getSiblingIndex();
return diff;
});
}
}
/**
* @deprecated Since v3.7.0, this is an engine private interface that will be removed in the future.
* @engineInternal
*/
public static _sortSiblings (): void {
UITransform.priorityChangeNodeMap.forEach((node, ID): void => {
UITransform._sortChildrenSibling(node);
node._updateSiblingIndex();
node.emit('childrenSiblingOrderChanged');
});
UITransform.priorityChangeNodeMap.clear();
}
/**
* @deprecated Since v3.7.0, this is an engine private interface that will be removed in the future.
* @engineInternal
*/
public static _cleanChangeMap (): void {
UITransform.priorityChangeNodeMap.clear();
}
}
// HACK
director.on(Director.EVENT_AFTER_UPDATE, UITransform._sortSiblings);
director.on(Director.EVENT_BEFORE_SCENE_LAUNCH, UITransform._cleanChangeMap);