소스 검색

Editor: Only display video renderer when SharedArrayBuffer is available.

Mr.doob 4 년 전
부모
커밋
71ffae30b3
1개의 변경된 파일6개의 추가작업 그리고 1개의 파일을 삭제
  1. 6 1
      editor/js/Sidebar.Project.js

+ 6 - 1
editor/js/Sidebar.Project.js

@@ -62,7 +62,12 @@ function SidebarProject( editor ) {
 
 	/* container.add( new SidebarProjectMaterials( editor ) ); */
 	container.add( new SidebarProjectRenderer( editor ) );
-	container.add( new SidebarProjectVideo( editor ) );
+
+	if ( 'SharedArrayBuffer' in window ) {
+
+		container.add( new SidebarProjectVideo( editor ) );
+
+	}
 
 	return container;