123456789101112131415161718192021222324252627282930 |
- import { TempNode } from '../core/TempNode';
- import { NodeBuilder } from '../core/NodeBuilder';
- import { FloatNode } from '../inputs/FloatNode';
- import { FunctionNode } from '../core/FunctionNode';
- import { Node } from '../core/Node';
- export class ColorAdjustmentNode extends TempNode {
- constructor(rgb: Node, adjustment?: FloatNode, method?: string);
- rgb: Node;
- adjustment: FloatNode | undefined;
- method: string;
- nodeType: string;
- generate(builder: NodeBuilder, output: string): string;
- copy(source: ColorAdjustmentNode): this;
- static Nodes: {
- hue: FunctionNode;
- saturation: FunctionNode;
- vibrance: FunctionNode;
- }
- static SATURATION: string;
- static HUE: string;
- static VIBRANCE: string;
- static BRIGHTNESS: string;
- static CONTRAST: string;
- }
|