OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:animationMap
(Results
1 - 2
of
2
) sorted by null
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
AnimControl.java
79
HashMap<String, Animation>
animationMap
;
121
//
animationMap
is reference-copied, animation data should be shared
136
animationMap
= animations;
146
if (
animationMap
== null) {
147
animationMap
= new HashMap<String, Animation>();
149
return
animationMap
.get(name);
158
if (
animationMap
== null) {
159
animationMap
= new HashMap<String, Animation>();
161
animationMap
.put(anim.getName(), anim);
169
if (!
animationMap
.containsKey(anim.getName())) {
[
all
...]
AnimChannel.java
214
Animation anim = control.
animationMap
.get(name);
Completed in 194 milliseconds