Skip to content

Commit

Permalink
Docs: Removed wireframeLinewidth in material browser
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdoob committed Mar 24, 2021
1 parent e5e3f06 commit e93bffa
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions docs/scenes/material-browser.html
Expand Up @@ -364,7 +364,6 @@

folder.addColor( data, 'color' ).onChange( handleColorChange( material.color ) );
folder.add( material, 'wireframe' );
folder.add( material, 'wireframeLinewidth', 0, 10 );
folder.add( material, 'vertexColors' ).onChange( needsUpdate( material, geometry ) );
folder.add( material, 'fog' );

Expand All @@ -386,7 +385,6 @@
const folder = gui.addFolder( 'THREE.MeshDepthMaterial' );

folder.add( material, 'wireframe' );
folder.add( material, 'wireframeLinewidth', 0, 10 );

folder.add( data, 'alphaMap', alphaMapKeys ).onChange( updateTexture( material, 'alphaMap', alphaMaps ) );

Expand All @@ -398,7 +396,6 @@

folder.add( material, 'flatShading' ).onChange( needsUpdate( material, geometry ) );
folder.add( material, 'wireframe' );
folder.add( material, 'wireframeLinewidth', 0, 10 );

}

Expand Down Expand Up @@ -435,7 +432,6 @@
folder.addColor( data, 'emissive' ).onChange( handleColorChange( material.emissive ) );

folder.add( material, 'wireframe' );
folder.add( material, 'wireframeLinewidth', 0, 10 );
folder.add( material, 'vertexColors' ).onChange( needsUpdate( material, geometry ) );
folder.add( material, 'fog' );

Expand Down Expand Up @@ -486,7 +482,6 @@
folder.add( material, 'shininess', 0, 100 );
folder.add( material, 'flatShading' ).onChange( needsUpdate( material, geometry ) );
folder.add( material, 'wireframe' );
folder.add( material, 'wireframeLinewidth', 0, 10 );
folder.add( material, 'vertexColors' ).onChange( needsUpdate( material, geometry ) );
folder.add( material, 'fog' );
folder.add( data, 'envMaps', envMapKeys ).onChange( updateTexture( material, 'envMap', envMaps ) );
Expand Down Expand Up @@ -536,7 +531,6 @@
folder.add( material, 'metalness', 0, 1 );
folder.add( material, 'flatShading' ).onChange( needsUpdate( material, geometry ) );
folder.add( material, 'wireframe' );
folder.add( material, 'wireframeLinewidth', 0, 10 );
folder.add( material, 'vertexColors' ).onChange( needsUpdate( material, geometry ) );
folder.add( material, 'fog' );
folder.add( data, 'envMaps', envMapKeys ).onChange( updateTexture( material, 'envMap', envMaps ) );
Expand Down Expand Up @@ -571,7 +565,6 @@
folder.add( material, 'clearcoatRoughness', 0, 1 ).step( 0.01 );
folder.add( material, 'flatShading' ).onChange( needsUpdate( material, geometry ) );
folder.add( material, 'wireframe' );
folder.add( material, 'wireframeLinewidth', 0, 10 );
folder.add( material, 'vertexColors' ).onChange( needsUpdate( material, geometry ) );
folder.add( material, 'fog' );
folder.add( data, 'envMaps', envMapKeys ).onChange( updateTexture( material, 'envMap', envMaps ) );
Expand Down

0 comments on commit e93bffa

Please sign in to comment.