Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d7b7f7 commit 4b56cc9Copy full SHA for 4b56cc9
editor/js/Sidebar.Scene.js
@@ -76,6 +76,25 @@ Sidebar.Scene = function ( editor ) {
76
container.add( outliner );
77
container.add( new UI.Break() );
78
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
98
// fog
99
100
function updateFogParameters() {
0 commit comments