Skip to content

Commit

Permalink
Merge pull request #563 from PontusHorn/patch-1
Browse files Browse the repository at this point in the history
SSAOEffect: Mark options as optional in typings
  • Loading branch information
vanruesc authored Dec 30, 2023
2 parents 6ce1e7d + c06d630 commit cd66cb1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8102,10 +8102,10 @@ declare module "postprocessing" {
normalDepthBuffer?: Texture;
samples?: number;
rings?: number;
worldDistanceThreshold: number;
worldDistanceFalloff: number;
worldProximityThreshold: number;
worldProximityFalloff: number;
worldDistanceThreshold?: number;
worldDistanceFalloff?: number;
worldProximityThreshold?: number;
worldProximityFalloff?: number;
distanceThreshold?: number;
distanceFalloff?: number;
rangeThreshold?: number;
Expand Down

0 comments on commit cd66cb1

Please sign in to comment.