@urso/core 0.7.32 → 0.7.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -195,6 +195,12 @@ class ModulesObjectsBaseModel {
|
|
|
195
195
|
|
|
196
196
|
return newTexture;
|
|
197
197
|
}
|
|
198
|
+
|
|
199
|
+
// sorts children by zIndex
|
|
200
|
+
sortChildren() {
|
|
201
|
+
if(this._baseObject.children?.length > 0)
|
|
202
|
+
this._baseObject.sortChildren();
|
|
203
|
+
}
|
|
198
204
|
}
|
|
199
205
|
|
|
200
206
|
module.exports = ModulesObjectsBaseModel;
|