Interface FunctionColorGenerator

interface FunctionColorGenerator {
    type: "function";
    clone(): FunctionColorGenerator;
    genColor(memory: GeneratorMemory, color: Vector4, t: number): Vector4;
    startGen(memory: GeneratorMemory): void;
    toJSON(): FunctionJSON;
}

Implemented by

Properties

Methods

Properties

type: "function"

Methods

  • Parameters

    Returns void