@urso/core 0.6.9 → 0.6.11
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
|
@@ -42,7 +42,7 @@ class ModulesScenesPixiWrapper {
|
|
|
42
42
|
this._createWorld();
|
|
43
43
|
|
|
44
44
|
// setup interaction
|
|
45
|
-
this.interaction = new PIXI.InteractionManager(this.renderer);
|
|
45
|
+
this.interaction = Urso.helper.recursiveGet('plugins.interaction', this.renderer) || new PIXI.InteractionManager(this.renderer);
|
|
46
46
|
|
|
47
47
|
this._loaderScene = this.getInstance('Model');
|
|
48
48
|
this._requestAnimFrame(this._loop);
|
|
@@ -87,7 +87,7 @@ class ModulesTemplateService {
|
|
|
87
87
|
let componentInstance = Urso.getInstance(path, obj.options);
|
|
88
88
|
|
|
89
89
|
if (!componentInstance) {
|
|
90
|
-
Urso.logger.error(`ModulesTemplateController Component error. Component ${obj.componentName} not found. Please check components _info.js file.`);
|
|
90
|
+
Urso.logger.error(`ModulesTemplateController Component error. Component "${obj.componentName}" not found. Please check components _info.js file.`);
|
|
91
91
|
Urso.logger.error(`To use only templates use Groups please.`);
|
|
92
92
|
}
|
|
93
93
|
|