Skip to content

Commit

Permalink
Editor: Fix CapsuleGeometry parameter.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mugen87 committed Sep 18, 2023
1 parent fffeb0c commit 587fd9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/js/Sidebar.Geometry.CapsuleGeometry.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function GeometryParametersPanel( editor, object ) {
// length

const lengthRow = new UIRow();
const length = new UINumber( parameters.height ).onChange( update );
const length = new UINumber( parameters.length ).onChange( update );

lengthRow.add( new UIText( strings.getKey( 'sidebar/geometry/capsule_geometry/length' ) ).setWidth( '90px' ) );
lengthRow.add( length );
Expand Down

0 comments on commit 587fd9c

Please sign in to comment.