lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
15 lines • 535 B
JavaScript
import { extendDefaults } from "./utils/Defaults";
import { physicsObjectManagerDefaults, physicsObjectManagerSchema } from "./IPhysicsObjectManager";
import { nullableCallback } from "./utils/NullableCallback";
export const loadedSchema = {
...physicsObjectManagerSchema,
src: String,
onLoad: Function,
boxVisible: Boolean
};
export const loadedDefaults = extendDefaults([physicsObjectManagerDefaults], {
src: undefined,
onLoad: nullableCallback(),
boxVisible: false
});
//# sourceMappingURL=ILoaded.js.map