@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
25 lines (24 loc) • 681 B
JavaScript
/**
* NOTE, trying to keep to IANA registry: https://www.iana.org/assignments/media-types/media-types.xhtml
* @enum {string}
*/
export const GameAssetType = {
ModelGLTF: "model/gltf",
ModelGLTF_JSON: "model/gltf+json",
/**
* @deprecated
*/
ModelThreeJs: "three.js",
ArrayBuffer: "arraybuffer",
Texture: "texture",
DeferredTexture: "texture-deferred",
JSON: "json",
Text: "text",
Image: "image",
ImageSvg: "image/svg",
AnimationGraph: 'x-meep/animation-graph',
AttachmentSockets: 'x-meep/attachment-sockets',
JavaScript: "text/javascript",
Sound: 'audio',
Font: 'font/opentype'
};