소스 검색

Disabling HierarchicalWorld loadingQueue.

clementlandrin 1 년 전
부모
커밋
b5ad6cca5e
1개의 변경된 파일6개의 추가작업 그리고 4개의 파일을 삭제
  1. 6 4
      h3d/scene/HierarchicalWorld.hx

+ 6 - 4
h3d/scene/HierarchicalWorld.hx

@@ -103,11 +103,13 @@ class HierarchicalWorld extends Object {
 	}
 
 	function subdivide() {
-		if ( !loading ) {
-			loading = true;
-			loadingQueue.insert(0, subdivide);
+		if ( subdivided )
 			return;
-		}
+		// if ( !loading ) {
+		// 	loading = true;
+		// 	loadingQueue.insert(0, subdivide);
+		// 	return;
+		// }
 		loading = false;
 		subdivided = true;
 		var childSize = data.size >> 1;