UNPKG

@megavr/ecsy-babylon

Version:

babylon.js ecsy binding and helpers

23 lines (22 loc) 577 B
import { System } from "ecsy"; import { Light } from "../components/index"; /** System for Light component */ export declare class LightSystem extends System { /** @hidden */ static queries: { light: { components: (typeof Light)[]; listen: { added: boolean; removed: boolean; changed: (typeof Light)[]; }; }; }; /** @hidden */ queries: any; /** @hidden */ execute(): void; private _updateLight; private _updateColor; }