OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:xOffsetValue
(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;
16
xOffsetValue
= new RangedNumericValue();
29
if (
xOffsetValue
.active) vector.x +=
xOffsetValue
.newLowValue();
42
xOffsetValue
.load(shape.
xOffsetValue
);
52
json.writeValue("
xOffsetValue
",
xOffsetValue
);
60
xOffsetValue
= json.readValue("
xOffsetValue
", RangedNumericValue.class, jsonData)
[
all
...]
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
ParticleEmitter.java
51
private RangedNumericValue
xOffsetValue
= new ScaledNumericValue();
116
xOffsetValue
.load(emitter.
xOffsetValue
);
449
if (
xOffsetValue
.active) x +=
xOffsetValue
.newLowValue();
687
return
xOffsetValue
;
876
xOffsetValue
.save(output);
929
xOffsetValue
.load(reader);
[
all
...]
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/flame/
SpawnInfluencerPanel.java
100
xPanel.setValue(spawnShapeValue.
xOffsetValue
);
217
addContent(i++, 0, xPanel = new RangedNumericPanel(editor, pointSpawnShapeValue.
xOffsetValue
, "X Offset", "Amount to offset a particle's starting X location, in world units.", false));
EffectPanel.java
280
pointSpawnShapeValue.
xOffsetValue
.setLow(0, 1f);
281
pointSpawnShapeValue.
xOffsetValue
.setActive(true);
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/
ParticleControllerTest.java
159
pointSpawnShapeValue.
xOffsetValue
.setLow(0, 1f);
160
pointSpawnShapeValue.
xOffsetValue
.setActive(true);
Completed in 231 milliseconds