@urso/core 0.9.0-dev → 0.9.1-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
|
@@ -75242,10 +75242,6 @@ class ModulesScenesPixiWrapper {
|
|
|
75242
75242
|
return this._renderer.generateTexture(obj);
|
|
75243
75243
|
}
|
|
75244
75244
|
_setPixiSettings() {
|
|
75245
|
-
PIXI.settings.SCALE_MODE = PIXI.SCALE_MODES.LINEAR;
|
|
75246
|
-
PIXI.settings.TEXT_RESOLUTION = 1;
|
|
75247
|
-
if (Urso.device.iOS || Urso.device.macOS)
|
|
75248
|
-
PIXI.settings.PRECISION_FRAGMENT = PIXI.PRECISION.HIGH;
|
|
75249
75245
|
}
|
|
75250
75246
|
_createWorld() {
|
|
75251
75247
|
if (this.world)
|
package/package.json
CHANGED
|
@@ -195,11 +195,12 @@ class ModulesScenesPixiWrapper {
|
|
|
195
195
|
}
|
|
196
196
|
|
|
197
197
|
_setPixiSettings() {
|
|
198
|
-
|
|
199
|
-
PIXI.settings.
|
|
198
|
+
//FIXME
|
|
199
|
+
// PIXI.settings.SCALE_MODE = PIXI.SCALE_MODES.LINEAR;
|
|
200
|
+
// PIXI.settings.TEXT_RESOLUTION = 1;
|
|
200
201
|
|
|
201
|
-
if (Urso.device.iOS || Urso.device.macOS)
|
|
202
|
-
|
|
202
|
+
// if (Urso.device.iOS || Urso.device.macOS)
|
|
203
|
+
// PIXI.settings.PRECISION_FRAGMENT = PIXI.PRECISION.HIGH;
|
|
203
204
|
}
|
|
204
205
|
|
|
205
206
|
_createWorld() {
|