UNPKG

playcanvas

Version:

PlayCanvas WebGL game engine

107 lines (106 loc) 1.75 kB
export const ABSOLUTE_URL: RegExp; /** * Asset type name for animation. * * @type {string} * @category Asset */ export const ASSET_ANIMATION: string; /** * Asset type name for audio. * * @type {string} * @category Asset */ export const ASSET_AUDIO: string; /** * Asset type name for image. * * @type {string} * @category Asset */ export const ASSET_IMAGE: string; /** * Asset type name for json. * * @type {string} * @category Asset */ export const ASSET_JSON: string; /** * Asset type name for model. * * @type {string} * @category Asset */ export const ASSET_MODEL: string; /** * Asset type name for material. * * @type {string} * @category Asset */ export const ASSET_MATERIAL: string; /** * Asset type name for text. * * @type {string} * @category Asset */ export const ASSET_TEXT: string; /** * Asset type name for texture. * * @type {string} * @category Asset */ export const ASSET_TEXTURE: string; /** * Asset type name for textureatlas. * * @type {string} * @category Asset */ export const ASSET_TEXTUREATLAS: string; /** * Asset type name for cubemap. * * @type {string} * @category Asset */ export const ASSET_CUBEMAP: string; /** * Asset type name for shader. * * @type {string} * @category Asset */ export const ASSET_SHADER: string; /** * Asset type name for CSS. * * @type {string} * @category Asset */ export const ASSET_CSS: string; /** * Asset type name for HTML. * * @type {string} * @category Asset */ export const ASSET_HTML: string; /** * Asset type name for script. * * @type {string} * @category Asset */ export const ASSET_SCRIPT: string; /** * Asset type name for a container. * * @type {string} * @category Asset */ export const ASSET_CONTAINER: string;