Skip to content

Commit 4b56cc9

Browse files
committed
Editor: Added commented out background.
1 parent 1d7b7f7 commit 4b56cc9

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

editor/js/Sidebar.Scene.js

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,25 @@ Sidebar.Scene = function ( editor ) {
7676
container.add( outliner );
7777
container.add( new UI.Break() );
7878

79+
/*
80+
// background
81+
82+
var backgroundRow = new UI.Row();
83+
var background = new UI.Select().setOptions( {
84+
85+
'None': 'None',
86+
'Color': 'Color',
87+
'Texture': 'Texture'
88+
89+
} ).setWidth( '150px' );
90+
background.onChange( function () {} );
91+
92+
backgroundRow.add( new UI.Text( 'Background' ).setWidth( '90px' ) );
93+
backgroundRow.add( background );
94+
95+
container.add( backgroundRow );
96+
*/
97+
7998
// fog
8099

81100
function updateFogParameters() {

0 commit comments

Comments
 (0)