mylingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
14 lines (10 loc) • 379 B
text/typescript
import IEventLoop, { eventLoopDefaults, eventLoopSchema } from "./IEventLoop"
import Defaults from "./utils/Defaults"
import { ExtractProps } from "./utils/extractProps"
export default interface ISky extends IEventLoop {}
export const skySchema: Required<ExtractProps<ISky>> = {
...eventLoopSchema
}
export const skyDefaults: Defaults<ISky> = {
...eventLoopDefaults
}