OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:spawnHeightDiff
(Results
1 - 7
of
7
) sorted by null
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/values/
PointSpawnShapeValue.java
19
vector.y = spawnHeight + (
spawnHeightDiff
* spawnHeightValue.getScale(percent));
PrimitiveSpawnShapeValue.java
19
protected float spawnHeight,
spawnHeightDiff
;
77
spawnHeightDiff
= spawnHeightValue.newHighValue();
78
if (!spawnHeightValue.isRelative())
spawnHeightDiff
-= spawnHeight;
LineSpawnShapeValue.java
20
float height = spawnHeight + (
spawnHeightDiff
* spawnHeightValue.getScale(percent));
CylinderSpawnShapeValue.java
21
float height = spawnHeight + (
spawnHeightDiff
* spawnHeightValue.getScale(percent));
RectangleSpawnShapeValue.java
19
float height = spawnHeight + (
spawnHeightDiff
* spawnHeightValue.getScale(percent));
EllipseSpawnShapeValue.java
24
float height = spawnHeight +
spawnHeightDiff
* spawnHeightValue.getScale(percent);
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
ParticleEmitter.java
76
private float spawnHeight,
spawnHeightDiff
;
364
spawnHeightDiff
= spawnHeightValue.newHighValue();
365
if (!spawnHeightValue.isRelative())
spawnHeightDiff
-= spawnHeight;
455
float height = spawnHeight + (
spawnHeightDiff
* spawnHeightValue.getScale(percent));
462
float height = spawnHeight + (
spawnHeightDiff
* spawnHeightValue.getScale(percent));
505
float height = spawnHeight + (
spawnHeightDiff
* spawnHeightValue.getScale(percent));
[
all
...]
Completed in 625 milliseconds