UNPKG

lingo3d

Version:

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

9 lines 421 B
import { extendDefaults } from "./utils/Defaults"; import { environmentChoices } from "./IEnvironment"; import { appendableDefaults, appendableSchema } from "./IAppendable"; export const skyboxSchema = { ...appendableSchema, texture: [String, Array] }; export const skyboxDefaults = extendDefaults([appendableDefaults], { texture: undefined }, { texture: environmentChoices }); //# sourceMappingURL=ISkybox.js.map