@tolokoban/tgd
Version:
ToloGameDev library for WebGL2
22 lines • 624 B
TypeScript
import { TgdCodeFunctions } from "../shader";
import { ArrayNumber4 } from "../types";
/**
* Fast hue shifting for colors.
* Hue shift is expressed in __radians__.
*/
export declare function tgdCodeFunction_shiftHue({ name, }?: {
name?: string;
}): TgdCodeFunctions;
export declare function tgdCodeFunction_luminance({ name, }?: {
name?: string;
}): TgdCodeFunctions;
export declare function tgdCodeFunction_palette({ name, a, b, c, d, }?: {
name?: string;
a?: ArrayNumber4;
b?: ArrayNumber4;
c?: ArrayNumber4;
d?: ArrayNumber4;
}): {
[name]: string;
};
//# sourceMappingURL=color.d.ts.map