Newer
Older
HuangJiPC / public / static / three / examples / jsm / nodes / effects / LuminanceNode.d.ts
@zhangdeliang zhangdeliang on 21 Jun 508 bytes update
import { TempNode } from '../core/TempNode';
import { NodeBuilder } from '../core/NodeBuilder';
import { FunctionNode } from '../core/FunctionNode';
import { ConstNode } from '../core/ConstNode';
import { Node } from '../core/Node';

export class LuminanceNode extends TempNode {

	constructor( rgb: Node );

	rgb: Node;
	nodeType: string;

	generate( builder: NodeBuilder, output: string ): string;
	copy( source: LuminanceNode ): this;

	static Nodes: {
		LUMA: ConstNode;
		luminance: FunctionNode;
	}

}