@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
21 lines (16 loc) • 438 B
TypeScript
import {Object3D} from "three";
import {IncrementalDeltaSet} from "../visibility/IncrementalDeltaSet";
import {RenderLayerState} from "./RenderLayerState";
export class RenderLayer {
name: string
state: RenderLayerState
managed: boolean
/**
* @deprecated
*/
extractRenderable(leafData: any): Object3D
/**
* @deprecated
*/
visibleSet: IncrementalDeltaSet<Object3D>
}