OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:animIndex
(Results
1 - 3
of
3
) sorted by null
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/
ModelTest.java
112
int
animIndex
= 0;
117
animIndex
= i;
122
animIndex
= (
animIndex
+ 1) % (e.key.animations.size + 1);
123
e.value.animate((
animIndex
== e.key.animations.size) ? null : e.key.animations.get(
animIndex
).id, -1, 1f, null, 0.2f);
SkeletonTest.java
135
int
animIndex
= 0;
140
animIndex
= i;
145
animIndex
= (
animIndex
+ 1) % e.key.animations.size;
146
e.value.animate(e.key.animations.get(
animIndex
).id, -1, 1f, null, 0.2f);
ShaderCollectionTest.java
348
int
animIndex
= 0;
353
animIndex
= i;
358
animIndex
= (
animIndex
+ 1) % e.key.animations.size;
359
e.value.animate(e.key.animations.get(
animIndex
).id, -1, 1f, null, 0.2f);
Completed in 330 milliseconds