From aef5dfb92ce1b1259d14ec4443c04dccac88464e Mon Sep 17 00:00:00 2001 From: Nathan Bierema Date: Sun, 21 Apr 2024 16:13:28 -0400 Subject: [PATCH] WebGPURenderer: Fix specularF90 of MeshStandardMaterial --- .../examples/jsm/nodes/functions/PhysicalLightingModel.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/three/examples/jsm/nodes/functions/PhysicalLightingModel.d.ts b/types/three/examples/jsm/nodes/functions/PhysicalLightingModel.d.ts index dff0826d3..20fc5cd50 100644 --- a/types/three/examples/jsm/nodes/functions/PhysicalLightingModel.d.ts +++ b/types/three/examples/jsm/nodes/functions/PhysicalLightingModel.d.ts @@ -17,5 +17,5 @@ export default class PhysicalLightingModel extends LightingModel { constructor(clearcoat?: boolean, sheen?: boolean, iridescence?: boolean, anisotropy?: boolean); - computeMultiscattering(singleScatter: Node, multiScatter: Node, specularF90?: Node): void; + computeMultiscattering(singleScatter: Node, multiScatter: Node, specularF90: Node): void; }