ColorAdjustmentNode.d.ts 666 字节
Newer Older
1 2 3 4 5 6 7
import { TempNode } from '../core/TempNode';
import { FloatNode } from '../inputs/FloatNode';
import { FunctionNode } from '../core/FunctionNode';
import { Node } from '../core/Node';

export class ColorAdjustmentNode extends TempNode {

G
Garrett Johnson 已提交
8
	constructor( rgb: Node, adjustment?: FloatNode, method?: string );
9

G
Garrett Johnson 已提交
10 11 12 13
	rgb: Node;
	adjustment: FloatNode | undefined;
	method: string;
	nodeType: string;
14

G
Garrett Johnson 已提交
15
	copy( source: ColorAdjustmentNode ): this;
16

G
Garrett Johnson 已提交
17 18 19 20 21 22 23 24 25 26 27
	static Nodes: {
		hue: FunctionNode;
		saturation: FunctionNode;
		vibrance: FunctionNode;
	}

	static SATURATION: string;
	static HUE: string;
	static VIBRANCE: string;
	static BRIGHTNESS: string;
	static CONTRAST: string;
28 29

}