UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

17 lines 586 B
/** * Visualizer for TextureAtlas, to help understand current state of the atlas */ export class TextureAtlasDebugger { /** * * @param {TextureAtlas} atlas * @param {Vector2} [scale] * @param {boolean} [draw_padding] * @param {boolean} [draw_borders] */ constructor(atlas: TextureAtlas, { scale, draw_padding, draw_borders }?: Vector2); vAtlasContent: CanvasView; } import { CanvasView } from "../../../../view/elements/CanvasView.js"; import Vector2 from "../../../../core/geom/Vector2.js"; //# sourceMappingURL=TextureAtlasDebugger.d.ts.map