UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

28 lines 523 B
export class AtlasLookupTexture { /** * * @type {TextureAtlas|null} */ atlas: TextureAtlas | null; /** * * @type {number} * @private */ private __row_size; /** * * @type {Uint16Array} * @private */ private __data; texture: DataTexture; /** * * @param {TextureAtlas} atlas */ attach(atlas: TextureAtlas): void; update(): void; } import { DataTexture } from "three"; //# sourceMappingURL=AtlasLookupTexture.d.ts.map