UNPKG

lingo3d

Version:

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

22 lines 689 B
import { disableSchema } from "../collections/disableSchema"; import { extendDefaults } from "./utils/Defaults"; import { nullableCallback, nullableCallbackDtParam } from "./utils/NullableCallback"; export const appendableSchema = { onLoop: Function, proxy: Object, uuid: String, id: String, name: String, runtimeData: Object }; for (const key of ["proxy", "runtimeData", "uuid"]) disableSchema.add(key); export const appendableDefaults = extendDefaults([], { onLoop: nullableCallback(nullableCallbackDtParam), proxy: undefined, uuid: "", id: undefined, name: undefined, runtimeData: undefined }); //# sourceMappingURL=IAppendable.js.map