OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:blendAmount
(Results
1 - 2
of
2
) sorted by null
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
AnimChannel.java
67
private float
blendAmount
= 1f;
226
blendAmount
= 0f;
325
blendFrom.setTime(timeBlendFrom, 1f -
blendAmount
, control, this, vars);
326
//blendFrom.setTime(timeBlendFrom, control.skeleton, 1f -
blendAmount
, affectedBones);
336
blendAmount
+= tpf * blendRate;
337
if (
blendAmount
> 1f){
338
blendAmount
= 1f;
343
animation.setTime(time,
blendAmount
, control, this, vars);
344
//animation.setTime(time, control.skeleton,
blendAmount
, affectedBones);
Animation.java
99
* @param
blendAmount
the blend amount factor
103
void setTime(float time, float
blendAmount
, AnimControl control, AnimChannel channel, TempVars vars) {
108
tracks[i].setTime(time,
blendAmount
, control, channel, vars);
118
((SpatialTrack) tracks[0]).setTime(time, spatial,
blendAmount
);
125
((BoneTrack) tracks[i]).setTime(time, skeleton,
blendAmount
);
135
((PoseTrack) tracks[i]).setTime(time, targets,
blendAmount
);
Completed in 154 milliseconds