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/misc/TextureCubeUVNode.d.ts
2023-12-11 11:59:56 -03:00

20 lines
479 B
TypeScript

import { TempNode } from '../core/TempNode';
import { FloatNode } from '../inputs/FloatNode';
import { StructNode } from '../core/StructNode';
import { FunctionNode } from '../core/FunctionNode';
import { Node } from '../core/Node';
export class TextureCubeUVNode extends TempNode {
constructor( uv: Node, textureSize: FloatNode );
uv: Node;
textureSize: FloatNode;
nodeType: string;
static Nodes: {
TextureCubeUVData: StructNode;
textureCubeUV: FunctionNode;
}
}