Changed some params now that dynamic AO is at half res
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user