Class ParticleComponent

All Implemented Interfaces:
com.badlogic.gdx.utils.Disposable, Renderable, Comparable<Renderable>

public class ParticleComponent extends RenderComponent
  • Constructor Details

    • ParticleComponent

      public ParticleComponent(ParticleEffectsConfig effectsConfig)
      Creates a new EffectComponent using the effects specified in the effectsConfig.
      Parameters:
      effectsConfig - - the config file containing the effects which can be played.
  • Method Details

    • create

      public void create()
      Loads the effects specified in the config file into a hashmap for later use.
      Overrides:
      create in class RenderComponent
    • draw

      protected void draw(com.badlogic.gdx.graphics.g2d.SpriteBatch batch)
      Description copied from class: RenderComponent
      Draw the renderable. Should be called only by the renderer, not manually.
      Specified by:
      draw in class RenderComponent
      Parameters:
      batch - Batch to render to.
    • startEffect

      public void startEffect(String effectName)
      Plays the effect which effectName maps to if it exists. If effectName does not map to a loaded effect, nothing happens.
      Parameters:
      effectName - - the name of the effect to play as specified in the config file.
    • stopEffect

      public void stopEffect(String effectName)
      Stops the playing of the effect which effectName maps to if it exists. If effectName does not map to a loaded effect, nothing happens.
      Parameters:
      effectName - - the name of the effect to stop as specified in the config file.