-
- All Implemented Interfaces:
public abstract class BaseEmitterAn abstract class for creating a custom emitter The emitter decides if a particle should be created and when the emitter is finished
-
-
Constructor Summary
Constructors Constructor Description BaseEmitter()
-
Method Summary
Modifier and Type Method Description abstract List<Confetti>createConfetti(Float deltaTime, Party party, CoreRect drawArea)This function is called on each update when the RenderSystem is active Keep this function as light as possible otherwise you'll slow down the render system abstract BooleanisFinished()-
-
Method Detail
-
createConfetti
abstract List<Confetti> createConfetti(Float deltaTime, Party party, CoreRect drawArea)
This function is called on each update when the RenderSystem is active Keep this function as light as possible otherwise you'll slow down the render system
-
isFinished
abstract Boolean isFinished()
-
-
-
-