mylingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
20 lines • 636 B
JavaScript
import { SHADOW_BIAS } from "../globals";
import { objectManagerDefaults, objectManagerSchema } from "./IObjectManager";
import NullableDefault from "./utils/NullableDefault";
export const lightBaseSchema = {
...objectManagerSchema,
color: String,
intensity: Number,
shadowResolution: Number,
shadowBias: Number,
helper: Boolean
};
export const lightBaseDefaults = {
...objectManagerDefaults,
color: "#ffffff",
intensity: 1,
shadowResolution: new NullableDefault(256),
shadowBias: new NullableDefault(SHADOW_BIAS),
helper: true
};
//# sourceMappingURL=ILightBase.js.map