ColorAdjustmentNode.d.ts 717 B

123456789101112131415161718192021222324252627282930
  1. import { TempNode } from '../core/TempNode';
  2. import { NodeBuilder } from '../core/NodeBuilder';
  3. import { FloatNode } from '../inputs/FloatNode';
  4. import { FunctionNode } from '../core/FunctionNode';
  5. import { Node } from '../core/Node';
  6. export class ColorAdjustmentNode extends TempNode {
  7. constructor( rgb: Node, adjustment?: FloatNode, method?: string );
  8. rgb: Node;
  9. adjustment: FloatNode | undefined;
  10. method: string;
  11. nodeType: string;
  12. copy( source: ColorAdjustmentNode ): this;
  13. static Nodes: {
  14. hue: FunctionNode;
  15. saturation: FunctionNode;
  16. vibrance: FunctionNode;
  17. }
  18. static SATURATION: string;
  19. static HUE: string;
  20. static VIBRANCE: string;
  21. static BRIGHTNESS: string;
  22. static CONTRAST: string;
  23. }