Explorar el Código

Merge pull request #18168 from martinRenou/fix_texturenode_typedef

TextureNode: Fix type definition
Michael Herzog hace 5 años
padre
commit
7a811a63d4
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;