-
首页
-
C4D R23.110 C++ SDK
CAnimInfo Class Reference
#include <c4d_canimation.h>
详细描述
Internal
.
构造函数 & 析构函数文档编制
◆
CAnimInfo()
◆
~CAnimInfo()
Member Data Documentation
◆
doc
Document.
◆
op
Original object.
◆
otime
Original time.
◆
xtime
Remapped time. Usually identical to the time delivered by
doc
GetTime()
Only if there are loops and/or time curves assigned the time value is remapped into the normal range between first and last key.
It is a float value instead of a
BaseTime
to avoid resolution/aliasing issues.
◆
fac
Factor of time between the first and the last key of the track.
◆
rel
Factor between two keys. Only !=
0.0
if
k1
!=
nullptr
&&
k2
!=
nullptr
.
◆
k1
Last key before or at the current time. Can be
nullptr
.
◆
k2
Next key strictly after the current time. Can be
nullptr
.
◆
k1idx
Key index for
k1
.
◆
k2idx
Key index for
k2
.
◆
cycle
0
for the range from first key to last key, after last key it is +
1
, +
2
,etc. before first key -
1
, -
2
,等。
This takes into account things like time curves and allows to compute the offset of values for tracks with pre or post behavior (e.g looping).