Examples of FogEmitterFactory


Examples of com.googlecode.jumpnevolve.graphics.effects.FogEmitterFactory

  }

  private void createFailedScreen() {
    if (this.failedEffect == null) {
      this.failedEffect = new ParticleEffect(this.getCamera()
          .getPosition(), new FogEmitterFactory());
    }
  }
View Full Code Here

Examples of com.googlecode.jumpnevolve.graphics.effects.FogEmitterFactory

  public Fluid(World world, Vector position, Vector dimension,
      float maximumVelocity) {
    super(world, ShapeFactory.createRectangle(position, dimension),
        Masses.NO_MASS);
    this.maximumVelocity = maximumVelocity;
    this.effect1 = new ParticleEffect(position, new FogEmitterFactory());
    this.effect2 = new ParticleEffect(position,
        new WaterfallEmitterFactory(dimension.y * 2));
  }
 
View Full Code Here

Examples of com.googlecode.jumpnevolve.graphics.effects.FogEmitterFactory

    // Nachdem die Einstellungen für die physikalische Welt erledigt sind,
    // kommen nun Einstellungen für das Level
    this.simulatedWorld = new SimulatedWorld(this);
   
    // Wasserfalleffekt einfügen
    this.simulatedWorld.add(new ParticleEffect(new Vector2f(97.5f, -1.0f), new FogEmitterFactory()));
    this.simulatedWorld.add(new ParticleEffect(new Vector2f(97.5f, -40.0f), new WaterfallEmitterFactory(36.0f)));
   
    // Unteres Wasser hinzufügen
    this.simulatedWorld.add(new DrawablePollable() {
      private float y = 0.0f;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.