playcanvas
Version:
PlayCanvas WebGL game engine
92 lines (91 loc) • 1.52 kB
TypeScript
export const ABSOLUTE_URL: RegExp;
/**
* Asset type name for animation.
*
* @category Asset
*/
export const ASSET_ANIMATION: "animation";
/**
* Asset type name for audio.
*
* @category Asset
*/
export const ASSET_AUDIO: "audio";
/**
* Asset type name for image.
*
* @category Asset
*/
export const ASSET_IMAGE: "image";
/**
* Asset type name for json.
*
* @category Asset
*/
export const ASSET_JSON: "json";
/**
* Asset type name for model.
*
* @category Asset
*/
export const ASSET_MODEL: "model";
/**
* Asset type name for material.
*
* @category Asset
*/
export const ASSET_MATERIAL: "material";
/**
* Asset type name for text.
*
* @category Asset
*/
export const ASSET_TEXT: "text";
/**
* Asset type name for texture.
*
* @category Asset
*/
export const ASSET_TEXTURE: "texture";
/**
* Asset type name for textureatlas.
*
* @category Asset
*/
export const ASSET_TEXTUREATLAS: "textureatlas";
/**
* Asset type name for cubemap.
*
* @category Asset
*/
export const ASSET_CUBEMAP: "cubemap";
/**
* Asset type name for shader.
*
* @category Asset
*/
export const ASSET_SHADER: "shader";
/**
* Asset type name for CSS.
*
* @category Asset
*/
export const ASSET_CSS: "css";
/**
* Asset type name for HTML.
*
* @category Asset
*/
export const ASSET_HTML: "html";
/**
* Asset type name for script.
*
* @category Asset
*/
export const ASSET_SCRIPT: "script";
/**
* Asset type name for a container.
*
* @category Asset
*/
export const ASSET_CONTAINER: "container";