소스 검색

Editor: Add scene children instead of scene.

Mr.doob 12 년 전
부모
커밋
918c355cab
1개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  1. 5 2
      editor/index.html

+ 5 - 2
editor/index.html

@@ -299,8 +299,11 @@
 
 									var scene = loader.parse( data );
 
-									signals.objectAdded.dispatch( scene );
-									signals.objectSelected.dispatch( scene );
+									while ( scene.children.length > 0 ) {
+
+										signals.objectAdded.dispatch( scene.children[ 0 ] );
+
+									}
 
 								}