OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:uvTranslation
(Results
1 - 3
of
3
) sorted by null
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/model/data/
ModelTexture.java
36
public Vector2
uvTranslation
;
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/
Model.java
285
// FIXME uvScaling/
uvTranslation
totally ignored
303
float offsetU = tex.
uvTranslation
== null ? 0f : tex.
uvTranslation
.x;
304
float offsetV = tex.
uvTranslation
== null ? 0f : tex.
uvTranslation
.y;
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/loader/
G3dModelLoader.java
219
jsonTexture.
uvTranslation
= readVector2(texture.get("
uvTranslation
"), 0f, 0f);
Completed in 42 milliseconds