Package org.newdawn.slick.particles.ConfigurableEmitter

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


  public void valueUpdated(ValuePanel source) {
    if (emitter == null) {
      return;
    }
   
    Value value = (Value) controlToData.get(source);
    if (value != null) {
      if( value instanceof SimpleValue)
        ((SimpleValue)value).setValue( source.getValue());
      else if( value instanceof RandomValue )
        ((RandomValue)value).setValue( source.getValue());
View Full Code Here

TOP

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

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.