@urso/core 0.9.3-dev → 0.9.4-dev
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/build/js/index.js
CHANGED
|
@@ -72649,7 +72649,7 @@ class ModulesObjectsProxy {
|
|
|
72649
72649
|
return;
|
|
72650
72650
|
let calculationNeed = false;
|
|
72651
72651
|
const baseObject = target._baseObject;
|
|
72652
|
-
baseObject.updateTransform();
|
|
72652
|
+
baseObject.updateTransform({});
|
|
72653
72653
|
if (baseObject._texture && (!baseObject._texture.orig.width || !baseObject._texture.orig.height)) {
|
|
72654
72654
|
baseObject.updateText(true);
|
|
72655
72655
|
}
|
package/package.json
CHANGED
|
@@ -112,7 +112,7 @@ class ModulesObjectsProxy {
|
|
|
112
112
|
|
|
113
113
|
const baseObject = target._baseObject;
|
|
114
114
|
|
|
115
|
-
baseObject.updateTransform();
|
|
115
|
+
baseObject.updateTransform({});
|
|
116
116
|
|
|
117
117
|
//Pixi texts have _texture.orig.width. When we call baseObject.width, Pixi runs update text. Its too slow operation.
|
|
118
118
|
if (baseObject._texture && (!baseObject._texture.orig.width || !baseObject._texture.orig.height)) {
|