Fix Inconsistent type on `kernelRadius` to a number. The plain version of the SSAOPass.js takes a number type but it's typed as a `boolean` here.
@@ -21,7 +21,7 @@ export class SSAOPass extends Pass {
width: number;
height: boolean;
clear: boolean;
- kernelRadius: boolean;
+ kernelRadius: number;
kernelSize: boolean;
kernel: Vector3[];
noiseTexture: DataTexture;