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