Browse Source

Editor: Improved shadow.bias input.

Mr.doob 5 years ago
parent
commit
06c3353dc3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      editor/js/Sidebar.Object.js

+ 1 - 1
editor/js/Sidebar.Object.js

@@ -308,7 +308,7 @@ function SidebarObject( editor ) {
 
 	objectShadowBiasRow.add( new UIText( strings.getKey( 'sidebar/object/shadowBias' ) ).setWidth( '90px' ) );
 
-	var objectShadowBias = new UINumber( 0 ).setPrecision( 6 ).setStep( 0.001 ).setNudge( 0.000001 ).onChange( update );
+	var objectShadowBias = new UINumber( 0 ).setPrecision( 5 ).setStep( 0.0001 ).setNudge( 0.00001 ).onChange( update );
 	objectShadowBiasRow.add( objectShadowBias );
 
 	container.add( objectShadowBiasRow );