@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
17 lines (16 loc) • 354 B
JavaScript
;
import { BaseSopOperation } from "./_Base";
import { Color } from "three";
export class ColorSopOperation extends BaseSopOperation {
static type() {
return "color";
}
cook(input_contents, params) {
}
}
ColorSopOperation.DEFAULT_PARAMS = {
fromAttribute: false,
attribName: "",
color: new Color(1, 1, 1),
asHsv: false
};