mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 10:19:24 +02:00
20 lines
479 B
TypeScript
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;
|
|
}
|
|
|
|
}
|