mylingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
18 lines • 492 B
JavaScript
import { WATERNORMALS_URL } from "../globals";
import { objectManagerDefaults, objectManagerSchema } from "./IObjectManager";
export const waterSchema = {
...objectManagerSchema,
shape: String,
normalMap: String,
resolution: Number,
speed: Number
};
export const waterDefaults = {
...objectManagerDefaults,
shape: "plane",
normalMap: WATERNORMALS_URL,
resolution: 512,
speed: 1,
rotationX: -90
};
//# sourceMappingURL=IWater.js.map