Skip to content

Commit

Permalink
Line2NodeMaterial: Fix broken dash.
Browse files Browse the repository at this point in the history
  • Loading branch information
Methuselah96 committed Dec 9, 2024
1 parent 95b90b1 commit 46e3671
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions types/three/src/materials/nodes/LineDashedNodeMaterial.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { LineDashedMaterialParameters } from "../LineDashedMaterial.js";
import NodeMaterial, { NodeMaterialParameters } from "./NodeMaterial.js";

export interface LineDashedNodeMaterialParameters extends NodeMaterialParameters, LineDashedMaterialParameters {
dashOffset?: number | undefined;
offsetNode?: Node | null | undefined;
dashScaleNode?: Node | null | undefined;
dashSizeNode?: Node | null | undefined;
Expand All @@ -12,6 +13,8 @@ export interface LineDashedNodeMaterialParameters extends NodeMaterialParameters
declare class LineDashedNodeMaterial extends NodeMaterial {
readonly isLineDashedNodeMaterial: true;

dashOffset: number;

offsetNode: Node | null;
dashScaleNode: Node | null;
dashSizeNode: Node | null;
Expand Down

0 comments on commit 46e3671

Please sign in to comment.