@tolokoban/tgd
Version:
ToloGameDev library for WebGL2
12 lines • 437 B
TypeScript
import { TgdMaterial } from "./material";
import { TgdTexture2D } from "../texture";
export type TgdMaterialFlatTextureOptions = {
texture: TgdTexture2D;
};
export declare class TgdMaterialFlatTexture extends TgdMaterial {
private _texture;
constructor(options: TgdMaterialFlatTextureOptions);
get texture(): TgdTexture2D | null;
set texture(texture: TgdTexture2D | null);
}
//# sourceMappingURL=flat-texture.d.ts.map