Package com.badlogic.gdx.graphics.g3d.particles.values

Examples of com.badlogic.gdx.graphics.g3d.particles.values.ScaledNumericValue


  private FloatChannel lifeChannel;

  public RegularEmitter(){
    delayValue = new RangedNumericValue();
    durationValue = new RangedNumericValue();
    lifeOffsetValue = new ScaledNumericValue();
    lifeValue = new ScaledNumericValue();
    emissionValue = new ScaledNumericValue();
   
    durationValue.setActive(true);
    emissionValue.setActive(true);
    lifeValue.setActive(true);
    continuous = true;
View Full Code Here


  public static abstract class Strength extends DynamicsModifier {
    protected FloatChannel strengthChannel;
    public ScaledNumericValue strengthValue;
   
    public Strength(){
      strengthValue = new ScaledNumericValue();
    }
View Full Code Here

      strengthValue = new ScaledNumericValue();
    }
   
    public Strength (Strength rotation) {
      super(rotation);
      strengthValue = new ScaledNumericValue();
      strengthValue.load(rotation.strengthValue);
    }
View Full Code Here

    public ScaledNumericValue thetaValue;
    /** Azimuth, Y */
    public ScaledNumericValue phiValue;

    public Angular(){
      thetaValue = new ScaledNumericValue();
      phiValue = new ScaledNumericValue();
    }
View Full Code Here

      phiValue = new ScaledNumericValue();
    }
   
    public Angular (Angular value) {
      super(value);
      thetaValue = new ScaledNumericValue();
      phiValue = new ScaledNumericValue();
      thetaValue.load(value.thetaValue);
      phiValue.load(value.phiValue);
    }
View Full Code Here

  public ScaledNumericValue value;
  FloatChannel valueChannel, interpolationChannel, lifeChannel;
  ChannelDescriptor valueChannelDescriptor;
 
  public SimpleInfluencer(){
    value = new ScaledNumericValue();
    value.setHigh(1);
  }
View Full Code Here

    public ScaledNumericValue alphaValue;
    public GradientColorValue colorValue;
   
    public Single(){
      colorValue = new GradientColorValue();
      alphaValue = new ScaledNumericValue();
      alphaValue.setHigh(1);
    }
View Full Code Here

TOP

Related Classes of com.badlogic.gdx.graphics.g3d.particles.values.ScaledNumericValue

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.