1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-04 10:19:24 +02:00
Oinktube/node_modules/three/examples/jsm/nodes/inputs/TextureNode.d.ts
2023-12-11 11:59:56 -03:00

23 lines
539 B
TypeScript

import {
Texture
} from '../../../../src/Three';
import { InputNode } from '../core/InputNode';
import { NodeBuilder } from '../core/NodeBuilder';
import { Node } from '../core/Node';
import { UVNode } from '../accessors/UVNode';
export class TextureNode extends InputNode {
constructor( value: Texture, uv?: UVNode, bias?: Node, project?: boolean );
value: Texture;
uv: UVNode;
bias: Node;
project: boolean;
nodeType: string;
getTexture( builder: NodeBuilder, output: string ): string;
copy( source: TextureNode ): this;
}