mylingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
19 lines • 737 B
JavaScript
import { staticObjectManagerDefaults, staticObjectManagerSchema } from "./IStaticObjectManaget";
import NullableDefault from "./utils/NullableDefault";
export const animatedObjectManagerSchema = {
...staticObjectManagerSchema,
animations: Object,
animation: [String, Number, Array, Boolean, Object],
animationPaused: Boolean,
animationRepeat: Boolean,
onAnimationFinish: Function
};
export const animatedObjectManagerDefaults = {
...staticObjectManagerDefaults,
animations: {},
animation: undefined,
animationPaused: new NullableDefault(false),
animationRepeat: new NullableDefault(true),
onAnimationFinish: undefined
};
//# sourceMappingURL=IAnimatedObjectManager.js.map