Browse Source

increate outline threshold max value

Alexander Rose 5 years ago
parent
commit
20af084127
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/mol-canvas3d/passes/postprocessing.ts

+ 1 - 1
src/mol-canvas3d/passes/postprocessing.ts

@@ -59,7 +59,7 @@ export const PostprocessingParams = {
     outline: PD.MappedStatic('off', {
         on: PD.Group({
             scale: PD.Numeric(1, { min: 0, max: 10, step: 1 }),
-            threshold: PD.Numeric(0.8, { min: 0, max: 1, step: 0.01 }),
+            threshold: PD.Numeric(0.8, { min: 0, max: 5, step: 0.01 }),
         }),
         off: PD.Group({})
     }, { cycle: true, description: 'Draw outline around 3D objects' })