Browse Source

TextureNode: Fix type definition

martinRenou 5 years ago
parent
commit
e3ff680446
1 changed files with 2 additions and 2 deletions
  1. 2 2
      examples/jsm/nodes/inputs/TextureNode.d.ts

+ 2 - 2
examples/jsm/nodes/inputs/TextureNode.d.ts

@@ -12,9 +12,9 @@ export class TextureNode extends InputNode {
 
 
 	constructor( value: Texture, uv?: UVNode, bias?: Node, project?: boolean );
 	constructor( value: Texture, uv?: UVNode, bias?: Node, project?: boolean );
 
 
-	value: Matrix4;
+	value: Texture;
 	uv: UVNode;
 	uv: UVNode;
-	bias: Matrix4;
+	bias: Node;
 	project: boolean;
 	project: boolean;
 	nodeType: string;
 	nodeType: string;