diff --git a/three.js b/three.js index 3f2956c35..7506a353d 160000 --- a/three.js +++ b/three.js @@ -1 +1 @@ -Subproject commit 3f2956c35e1bd1fc8cbe35f1430e475fd848e6a2 +Subproject commit 7506a353d60767f738ca1abeceb6fa11c77122eb diff --git a/types/three/src/materials/nodes/InstancedPointsNodeMaterial.d.ts b/types/three/src/materials/nodes/InstancedPointsNodeMaterial.d.ts index ce74bb1f8..9784e7f52 100644 --- a/types/three/src/materials/nodes/InstancedPointsNodeMaterial.d.ts +++ b/types/three/src/materials/nodes/InstancedPointsNodeMaterial.d.ts @@ -9,6 +9,7 @@ export interface InstancedPointsNodeMaterialParameters extends NodeMaterialParam useColor?: boolean | undefined; pointWidth?: number | undefined; pointColorNode?: Node | null | undefined; + pointWidthNode?: Node | null | undefined; } declare class InstancedPointsNodeMaterial extends NodeMaterial { @@ -16,6 +17,7 @@ declare class InstancedPointsNodeMaterial extends NodeMaterial { useColor: boolean | undefined; pointWidth: number; pointColorNode: Node | null; + pointWidthNode: Node | null; // Properties from LineDashedMaterial readonly isPointsMaterial: true;