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