UNPKG

lingo3d

Version:

Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor

13 lines 463 B
export const uuidMap = new Map(); export const uuidTextureMap = new Map(); export const uuidMaterialMap = new Map(); export const userIdMap = new Map(); export const idRenderCheckMap = new Map(); export const idRenderCheckModelMap = new Map(); export const getAppendablesById = (id) => { const uuidInstance = uuidMap.get(id); if (uuidInstance) return [uuidInstance]; return userIdMap.get(id) ?? []; }; //# sourceMappingURL=idCollections.js.map