瀏覽代碼

smaa param tweaks

Alexander Rose 4 年之前
父節點
當前提交
f3013f0e46
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/mol-canvas3d/passes/smaa.ts

+ 2 - 2
src/mol-canvas3d/passes/smaa.ts

@@ -25,8 +25,8 @@ import { Viewport } from '../camera/util';
 import { isDebugMode } from '../../mol-util/debug';
 
 export const SmaaParams = {
-    edgeThreshold:PD.Numeric(0.1, { min: 0.05, max: 0.2, step: 0.01 }),
-    maxSearchSteps:PD.Numeric(18, { min: 0, max: 98, step: 1 }),
+    edgeThreshold:PD.Numeric(0.1, { min: 0.05, max: 0.15, step: 0.01 }),
+    maxSearchSteps:PD.Numeric(16, { min: 0, max: 32, step: 1 }),
 };
 export type SmaaProps = PD.Values<typeof SmaaParams>