HomeSort by relevance Sort by last modified time
    Searched refs:yOffsetValue (Results 1 - 5 of 5) 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...]
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/flame/
SpawnInfluencerPanel.java 101 yPanel.setValue(spawnShapeValue.yOffsetValue);
218 addContent(i++, 0, yPanel = new RangedNumericPanel(editor, pointSpawnShapeValue.yOffsetValue, "Y Offset", "Amount to offset a particle's starting Y location, in world units.", false));
EffectPanel.java 282 pointSpawnShapeValue.yOffsetValue.setLow(0, 1f);
283 pointSpawnShapeValue.yOffsetValue.setActive(true);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/
ParticleControllerTest.java 161 pointSpawnShapeValue.yOffsetValue.setLow(0, 1f);
162 pointSpawnShapeValue.yOffsetValue.setActive(true);

Completed in 800 milliseconds