UNPKG

mylingo3d

Version:

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

24 lines 718 B
import NullableDefault from "./utils/NullableDefault"; export const texturedBasicSchema = { color: String, fog: Boolean, opacity: Number, texture: [String, Object], videoTexture: [String, Object], alphaMap: String, textureRepeat: [Object, Number], textureFlipY: Boolean, textureRotation: Number }; export const texturedBasicDefaults = { color: "#ffffff", fog: true, opacity: 1, texture: undefined, videoTexture: undefined, alphaMap: undefined, textureRepeat: new NullableDefault({ x: 1, y: 1 }), textureFlipY: new NullableDefault(false), textureRotation: new NullableDefault(0) }; //# sourceMappingURL=ITexturedBasic.js.map