@drincs/pixi-vn
Version:
Pixi'VN is a npm package that provides various features for creating visual novels.
13 lines (10 loc) • 431 B
TypeScript
import { Texture } from 'pixi.js';
import TextureMemory from '../../interface/canvas/TextureMemory.js';
/**
* Get the memory object of the PixiJS texture
* @param texture PixiJS Texture object
* @returns Memory object of the texture
*/
declare function getTextureMemory(texture: Texture, alias?: string): TextureMemory;
declare function checkIfVideo(textureAlias: string): boolean;
export { checkIfVideo, getTextureMemory };