ColorAdjustmentNode.d.ts 665 B

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