@matematrolii/sketchbook
Version:
3D matematrolii playground built on three.js and cannon.js
11 lines (10 loc) • 333 B
TypeScript
import * as THREE from 'three';
import { World } from './World';
import { IUpdatable } from '../interfaces/IUpdatable';
export declare class Ocean implements IUpdatable {
updateOrder: number;
material: THREE.ShaderMaterial;
private world;
constructor(object: any, world: World);
update(timeStep: number): void;
}