Browse Source

[scene] Fix references being interactible in non edit mode

Clément Espeute 6 months ago
parent
commit
36cf598815
1 changed files with 1 additions and 1 deletions
  1. 1 1
      hide/comp/SceneEditor.hx

+ 1 - 1
hide/comp/SceneEditor.hx

@@ -4440,7 +4440,7 @@ class SceneEditor {
 			prefab.make();
 		}
 
-		for( p in prefab.flatten(null, null, true) ) {
+		for( p in prefab.flatten(null, null) ) {
 			makeInteractive(p);
 			applySceneStyle(p);
 		}