UNPKG

lingo3d

Version:

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

16 lines 591 B
import { extendDefaults } from "./utils/Defaults"; import { meshAppendableDefaults, meshAppendableSchema } from "./IMeshAppendable"; export const animatedObjectManagerSchema = { ...meshAppendableSchema, animations: Object, animation: [String, Number, Boolean, Object], animationPaused: Boolean, animationLoop: [Boolean, Number] }; export const animatedObjectManagerDefaults = extendDefaults([meshAppendableDefaults], { animations: {}, animation: undefined, animationPaused: false, animationLoop: true }); //# sourceMappingURL=IAnimatedObjectManager.js.map