Explorar el Código

TextureNode: Fix type definition

martinRenou hace 5 años
padre
commit
e3ff680446
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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 );
 
-	value: Matrix4;
+	value: Texture;
 	uv: UVNode;
-	bias: Matrix4;
+	bias: Node;
 	project: boolean;
 	nodeType: string;