@megavr/ecsy-babylon
Version:
babylon.js ecsy binding and helpers
23 lines (22 loc) • 598 B
TypeScript
import { System } from "ecsy";
import { Particle } from "../components/index";
/** System for Particle component */
export declare class ParticleSystem extends System {
/** @hidden */
static queries: {
particle: {
components: (typeof Particle)[];
listen: {
added: boolean;
removed: boolean;
changed: (typeof Particle)[];
};
};
};
/** @hidden */
queries: any;
/** @hidden */
execute(): void;
private _updateParticle;
private _updateColor;
}