提交 3a74507c 编写于 作者: M Mr.doob

Editor: Only display video renderer when SharedArrayBuffer is available.

上级 e54edd7e
......@@ -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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册