1
0
mirror of https://github.com/troisjs/trois.git synced 2024-11-24 04:12:02 +08:00

remove console.log

This commit is contained in:
Kevin Levron 2021-05-03 23:31:17 +02:00
parent ec6a9db7fc
commit 2ce7fe8799

View File

@ -81,7 +81,6 @@ function createSmaaEffect(options: Record<string, any>, assets: any): PP.Pass {
const { smaaSearch, smaaArea } = assets const { smaaSearch, smaaArea } = assets
// TODO : options // TODO : options
const params = [options.preset ?? PP.SMAAPreset.HIGH, options.edgeDetectionMode ?? PP.EdgeDetectionMode.COLOR] const params = [options.preset ?? PP.SMAAPreset.HIGH, options.edgeDetectionMode ?? PP.EdgeDetectionMode.COLOR]
console.log(params)
return new PP.SMAAEffect(smaaSearch, smaaArea, ...params) return new PP.SMAAEffect(smaaSearch, smaaArea, ...params)
} }