瀏覽代碼

Editor: Added commented out background.

Mr.doob 9 年之前
父節點
當前提交
4b56cc935e
共有 1 個文件被更改,包括 19 次插入0 次删除
  1. 19 0
      editor/js/Sidebar.Scene.js

+ 19 - 0
editor/js/Sidebar.Scene.js

@@ -76,6 +76,25 @@ Sidebar.Scene = function ( editor ) {
 	container.add( outliner );
 	container.add( new UI.Break() );
 
+	/*
+	// background
+
+	var backgroundRow = new UI.Row();
+	var background = new UI.Select().setOptions( {
+
+		'None': 'None',
+		'Color': 'Color',
+		'Texture': 'Texture'
+
+	} ).setWidth( '150px' );
+	background.onChange( function () {} );
+
+	backgroundRow.add( new UI.Text( 'Background' ).setWidth( '90px' ) );
+	backgroundRow.add( background );
+
+	container.add( backgroundRow );
+	*/
+
 	// fog
 
 	function updateFogParameters() {