UNPKG

lingo3d

Version:

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

11 lines (10 loc) 487 B
import IAnimatedObjectManager from "./IAnimatedObjectManager"; import { ExtractProps } from "./utils/extractProps"; export default interface ISimpleObjectManager extends IAnimatedObjectManager { scaleX: number; scaleY: number; scaleZ: number; scale: number; } export declare const simpleObjectManagerSchema: Required<ExtractProps<ISimpleObjectManager>>; export declare const simpleObjectManagerDefaults: Partial<import("./utils/Defaults").default<ISimpleObjectManager>>;