UNPKG

@tolokoban/tgd

Version:

ToloGameDev library for WebGL2

18 lines 501 B
import type { TgdContext } from "../../../context"; import { TgdTexture2D } from "../../../texture"; interface TipsOptions { /** * Resulting image will be 3*size × 2*size. */ size: number; /** * Tips' scale */ scale: number; red: string; green: string; blue: string; } export declare function createTipsTexture(context: TgdContext, { size, red, green, blue }?: Partial<TipsOptions>): Promise<TgdTexture2D>; export {}; //# sourceMappingURL=tips.d.ts.map