lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
12 lines (11 loc) • 483 B
TypeScript
import { ExtractProps } from "./utils/extractProps";
import Nullable from "./utils/Nullable";
import IPhysicsObjectManager from "./IPhysicsObjectManager";
export default interface IWater extends IPhysicsObjectManager {
shape: "plane" | "sphere";
normalMap: Nullable<string>;
resolution: number;
speed: number;
}
export declare const waterSchema: Required<ExtractProps<IWater>>;
export declare const waterDefaults: Partial<import("./utils/Defaults").default<IWater>>;