Home
last modified time | relevance | path

Searched refs:blendAmount (Results 1 – 2 of 2) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/animation/
DAnimChannel.java67 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()
DAnimation.java103 …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()