UNPKG

@tolokoban/tgd

Version:

ToloGameDev library for WebGL2

10 lines 355 B
import { TgdVec4 } from "../math"; import type { ArrayNumber4 } from "../types"; import { TgdMaterial } from "./material"; export type TgdMaterialFlatOptions = Partial<{ color: ArrayNumber4 | TgdVec4; }>; export declare class TgdMaterialFlat extends TgdMaterial { constructor(options?: TgdMaterialFlatOptions); } //# sourceMappingURL=flat.d.ts.map