HomeSort by relevance Sort by last modified time
    Searched defs:yOffsetValue (Results 1 - 2 of 2) sorted by null

  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/values/
SpawnShapeValue.java 13 public RangedNumericValue xOffsetValue, yOffsetValue, zOffsetValue;
17 yOffsetValue = new RangedNumericValue();
30 if (yOffsetValue.active) vector.y += yOffsetValue.newLowValue();
43 yOffsetValue.load(shape.yOffsetValue);
53 json.writeValue("yOffsetValue", yOffsetValue);
61 yOffsetValue = json.readValue("yOffsetValue", RangedNumericValue.class, jsonData)
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
ParticleEmitter.java 52 private RangedNumericValue yOffsetValue = new ScaledNumericValue();
117 yOffsetValue.load(emitter.yOffsetValue);
451 if (yOffsetValue.active) y += yOffsetValue.newLowValue();
691 return yOffsetValue;
838 yOffsetValue.setLow(-yOffsetValue.getLowMin(), -yOffsetValue.getLowMax());
878 yOffsetValue.save(output);
    [all...]

Completed in 3040 milliseconds