modern-canvas
Version:
A JavaScript WebGL rendering engine. only the ESM.
19 lines (18 loc) • 452 B
TypeScript
import { Material } from './Material';
export declare class EffectMaterial extends Material {
static RE: {
getColor: RegExp;
getFromColor: RegExp;
getToColor: RegExp;
transform: RegExp;
transition: RegExp;
};
has: {
getColor: boolean;
getFromColor: boolean;
getToColor: boolean;
transform: boolean;
transition: boolean;
};
constructor(glsl: string);
}