• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.badlogic.gdx.graphics.g3d.particles.influencers;
2 
3 import com.badlogic.gdx.graphics.g3d.particles.ParticleControllerComponent;
4 
5 /** It's a {@link ParticleControllerComponent} which usually modifies one or more properties
6  * of the particles(i.e color, scale, graphical representation, velocity, etc...).
7  * @author Inferno */
8 public abstract class Influencer extends ParticleControllerComponent {
9 
10 }
11