mylingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
18 lines (14 loc) • 502 B
text/typescript
import IObjectManager, { objectManagerDefaults, objectManagerSchema } from "./IObjectManager"
import Defaults from "./utils/Defaults"
import { ExtractProps } from "./utils/extractProps"
export default interface ISpawnPoint extends IObjectManager {
helper: boolean
}
export const spawnPointSchema: Required<ExtractProps<ISpawnPoint>> = {
...objectManagerSchema,
helper: Boolean
}
export const spawnPointDefaults: Defaults<ISpawnPoint> = {
...objectManagerDefaults,
helper: true
}