Changed some params now that dynamic AO is at half res

This commit is contained in:
Alex
2022-10-27 13:47:19 +03:00
parent 639ae9cd2a
commit 98e5dbfe15
3 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -37,18 +37,18 @@ export default class Sandbox {
dynamicAoParams: {
intensity: 1.5,
scale: 0,
kernelRadius: 10,
kernelRadius: 5,
bias: 0.2,
normalsType: 2,
blurEnabled: true,
blurRadius: 2,
blurStdDev: 4,
blurDepthCutoff: 0.0007
blurDepthCutoff: 0.007
},
staticAoEnabled: true,
staticAoParams: {
intensity: 0.8,
kernelRadius: 20, // Screen space
intensity: 1,
kernelRadius: 30, // Screen space
kernelSize: 16,
bias: 0.01,
minDistance: 0,
@@ -50,13 +50,13 @@ export interface DynamicAOPassParams {
export const DefaultDynamicAOPassParams = {
intensity: 1.5,
scale: 0,
kernelRadius: 10,
kernelRadius: 5,
bias: 0.2,
normalsType: NormalsType.ACCURATE,
blurEnabled: true,
blurRadius: 2,
blurStdDev: 4,
blurDepthCutoff: 0.0007
blurDepthCutoff: 0.007
}
export class DynamicSAOPass extends Pass implements SpecklePass {
@@ -49,8 +49,8 @@ export interface StaticAoPassParams {
}
export const DefaultStaticAoPassParams = {
intensity: 0.8,
kernelRadius: 20, // Screen space
intensity: 1,
kernelRadius: 30, // Screen space
kernelSize: 16,
bias: 0.01,
minDistance: 0,