123456789101112131415161718192021222324252627282930313233343536 |
- import DeveloperError from "../Core/DeveloperError.js";
- function ParticleEmitter(options) {
-
- throw new DeveloperError(
- "This type should not be instantiated directly. Instead, use BoxEmitter, CircleEmitter, ConeEmitter or SphereEmitter."
- );
-
- }
- ParticleEmitter.prototype.emit = function (particle) {
- DeveloperError.throwInstantiationError();
- };
- export default ParticleEmitter;
|