|
@@ -141,6 +141,7 @@ Sidebar.Material = function ( editor ) {
|
|
|
|
|
|
container.add( materialVertexColorsRow );
|
|
|
|
|
|
+
|
|
|
// map
|
|
|
|
|
|
var materialMapRow = new UI.Panel();
|
|
@@ -153,6 +154,7 @@ Sidebar.Material = function ( editor ) {
|
|
|
|
|
|
container.add( materialMapRow );
|
|
|
|
|
|
+
|
|
|
// light map
|
|
|
|
|
|
var materialLightMapRow = new UI.Panel();
|
|
@@ -165,6 +167,7 @@ Sidebar.Material = function ( editor ) {
|
|
|
|
|
|
container.add( materialLightMapRow );
|
|
|
|
|
|
+
|
|
|
// bump map
|
|
|
|
|
|
var materialBumpMapRow = new UI.Panel();
|
|
@@ -179,6 +182,7 @@ Sidebar.Material = function ( editor ) {
|
|
|
|
|
|
container.add( materialBumpMapRow );
|
|
|
|
|
|
+
|
|
|
// normal map
|
|
|
|
|
|
var materialNormalMapRow = new UI.Panel();
|
|
@@ -191,6 +195,7 @@ Sidebar.Material = function ( editor ) {
|
|
|
|
|
|
container.add( materialNormalMapRow );
|
|
|
|
|
|
+
|
|
|
// specular map
|
|
|
|
|
|
var materialSpecularMapRow = new UI.Panel();
|
|
@@ -203,6 +208,7 @@ Sidebar.Material = function ( editor ) {
|
|
|
|
|
|
container.add( materialSpecularMapRow );
|
|
|
|
|
|
+
|
|
|
// env map
|
|
|
|
|
|
var materialEnvMapRow = new UI.Panel();
|
|
@@ -210,7 +216,6 @@ Sidebar.Material = function ( editor ) {
|
|
|
var materialEnvMap = new UI.CubeTexture().setColor( '#444' ).setWidth( '100px' ).onChange( update );
|
|
|
var materialReflectivity = new UI.Number( 1 ).setWidth( '30px' ).onChange( update );
|
|
|
|
|
|
-
|
|
|
materialEnvMapRow.add( new UI.Text( 'Env Map' ).setWidth( '90px' ).setColor( '#666' ) );
|
|
|
materialEnvMapRow.add( materialEnvMapEnabled );
|
|
|
materialEnvMapRow.add( materialReflectivity );
|
|
@@ -249,6 +254,7 @@ Sidebar.Material = function ( editor ) {
|
|
|
|
|
|
container.add( materialOpacityRow );
|
|
|
|
|
|
+
|
|
|
// transparent
|
|
|
|
|
|
var materialTransparentRow = new UI.Panel();
|
|
@@ -259,6 +265,7 @@ Sidebar.Material = function ( editor ) {
|
|
|
|
|
|
container.add( materialTransparentRow );
|
|
|
|
|
|
+
|
|
|
// wireframe
|
|
|
|
|
|
var materialWireframeRow = new UI.Panel();
|