-rw-r--r-- | delta.jscad | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/delta.jscad b/delta.jscad index fd36ba5..489e20d 100644 --- a/delta.jscad +++ b/delta.jscad @@ -427,14 +427,26 @@ function microswitch() { } function getParameterDefinitions() { return [{ name: 'part', type: 'choice', - values: ['platform', 'hinged', 'clamp', 'fanholder', 'alltogethernow'], - captions: ['Effector platform','Hinged part', 'Clamp', 'Fan holder', 'All together now!'], + values: [ + 'platform', + 'hinged', + 'clamp', + 'fanholder', + 'alltogethernow' + ], + captions: [ + 'Effector platform', + 'Hinged part', + 'Clamp', + 'Fan holder', + 'All together now!' + ], caption: 'Part', initial: 'alltogethernow' }]; } function main(params) { |