UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

23 lines 498 B
export class LightContext extends SystemEntityContext { /** * * @type {LightBinding|null} * @private */ private __binding; /** * * @return {Light} */ getLight(): Light; /** * * @return {Transform} */ getTransform(): Transform; __rebuild(): void; __build(): void; applySettings(): void; } import { SystemEntityContext } from "../../../ecs/system/SystemEntityContext.js"; //# sourceMappingURL=LightContext.d.ts.map