Package org.newdawn.slick.particles.ConfigurableEmitter

Examples of org.newdawn.slick.particles.ConfigurableEmitter.Range


  public void minMaxUpdated(MinMaxPanel source) {
    if (emitter == null) {
      return;
    }
   
    Range range = (Range) controlToData.get(source);
    if (range != null) {
      range.setMax(source.getMax());
      range.setMin(source.getMin());
      range.setEnabled(source.getEnabled());
    } else {
      throw new RuntimeException("No data set specified for the GUI source");
    }
  }
View Full Code Here

TOP

Related Classes of org.newdawn.slick.particles.ConfigurableEmitter.Range

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.