UNPKG

lingo3d

Version:

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

23 lines 681 B
import { extendDefaults } from "./utils/Defaults"; import Range from "./utils/Range"; import { physicsObjectManagerDefaults, physicsObjectManagerSchema } from "./IPhysicsObjectManager"; export const waterSchema = { ...physicsObjectManagerSchema, shape: String, normalMap: String, resolution: Number, speed: Number }; export const waterDefaults = extendDefaults([physicsObjectManagerDefaults], { shape: "plane", normalMap: undefined, resolution: 512, speed: 1, rotationX: 270, scaleZ: 0, depth: 0 }, { resolution: new Range(256, 2048, 256), speed: new Range(0.1, 10) }, { normalMap: true }); //# sourceMappingURL=IWater.js.map