We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e163f1 commit 4987e2eCopy full SHA for 4987e2e
src/Typings/Scene/Resources/translate.js
@@ -54,6 +54,7 @@ Scene.newF("translate", function(data, meta) {
54
// this part is mostly just for like making sure that objects get put in Scene.objects and UnityscriptWorkspace.objects
55
if (obj instanceof this.parent.GameObject) { this.objects.push(fileID, obj); this.parent.objects.push(fileID, obj); }
56
if (obj instanceof this.parent.Light) { this.lights.push(fileID, obj); }
57
+ if (obj instanceof this.parent.Camera) { this.cameras.push(fileID, obj); }
58
59
// finally adds it to the children
60
this.children.push(fileID, obj);
0 commit comments