зеркало из https://github.com/mozilla/Spoke.git
Fix object selection
This commit is contained in:
Родитель
97665e55ad
Коммит
2171a05879
|
@ -256,6 +256,13 @@ export default class Editor {
|
|||
const scene = await loadScene(url, this.addComponent, false);
|
||||
scene.userData._dontShowInHierarchy = true;
|
||||
scene.userData._sceneReference = url;
|
||||
|
||||
scene.traverse(child => {
|
||||
Object.defineProperty(child.userData, "selectionRoot", { value: parent, enumerable: false });
|
||||
});
|
||||
|
||||
this.signals.objectAdded.dispatch(scene);
|
||||
|
||||
parent.add(scene);
|
||||
this.signals.sceneGraphChanged.dispatch();
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче