Skip to content

Commit

Permalink
Editor: Improved shadow.bias input.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdoob committed Jun 18, 2020
1 parent 521a8ca commit 06c3353
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/js/Sidebar.Object.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
Expand Down

0 comments on commit 06c3353

Please sign in to comment.