Searched refs:blendAmount (Results 1 – 2 of 2) sorted by relevance
/external/jmonkeyengine/engine/src/core/com/jme3/animation/ |
D | AnimChannel.java | 67 private float blendAmount = 1f; field in AnimChannel 226 blendAmount = 0f; in setAnim() 325 blendFrom.setTime(timeBlendFrom, 1f - blendAmount, control, this, vars); in update() 336 blendAmount += tpf * blendRate; in update() 337 if (blendAmount > 1f){ in update() 338 blendAmount = 1f; in update() 343 animation.setTime(time, blendAmount, control, this, vars); in update()
|
D | Animation.java | 103 …void setTime(float time, float blendAmount, AnimControl control, AnimChannel channel, TempVars var… in setTime() argument 108 tracks[i].setTime(time, blendAmount, control, channel, vars); in setTime()
|