Newer
Older
HuangJiPC / public / static / three / examples / jsm / nodes / utils / UVTransformNode.d.ts
@zhangdeliang zhangdeliang on 21 Jun 594 bytes update
import { ExpressionNode } from '../core/ExpressionNode';
import { NodeBuilder } from '../core/NodeBuilder';
import { Matrix3Node } from '../inputs/Matrix3Node';
import { UVNode } from '../accessors/UVNode';

export class UVTransformNode extends ExpressionNode {

	constructor( uv?: UVNode, position?: Matrix3Node );

	uv: UVNode;
	position: Matrix3Node;

	nodeType: string;

	generate( builder: NodeBuilder, output: string ): string;
	setUvTransform( tx: number, ty: number, sx: number, sy: number, rotation: number, cx?: number, cy?: number ): void;
	copy( source: UVTransformNode ): this;

}