mylingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
18 lines • 524 B
JavaScript
import { objectManagerDefaults, objectManagerSchema } from "./IObjectManager";
import { hideSchema } from "./utils/nonEditorSchemaSet";
export const htmlMeshSchema = {
...objectManagerSchema,
element: Object,
innerHTML: String,
cssColor: String,
sprite: Boolean
};
hideSchema(["element"]);
export const htmlMeshDefaults = {
...objectManagerDefaults,
element: undefined,
innerHTML: undefined,
cssColor: "#ffffff",
sprite: false
};
//# sourceMappingURL=IHTMLMesh.js.map