소스 검색

TextureNode: Fix type definition

martinRenou 5 년 전
부모
커밋
e3ff680446
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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;