This is the interface for implementation of animation key objects.
Definition at line 134 of file fbxanimcurve.h.
|
virtual | ~FbxAnimCurveKey_Impl () |
| Destructor. More...
|
|
virtual FbxAnimCurveKey_Impl & | operator= (const FbxAnimCurveKey_Impl &pFKey)=0 |
| Assignment operator. More...
|
|
virtual void | Set (FbxTime pTime, float pValue)=0 |
| Set time and value of key. More...
|
|
virtual void | SetTCB (FbxTime pTime, float pValue, float pData0=0.0f, float pData1=0.0f, float pData2=0.0f)=0 |
| Set a key with cubic interpolation, TCB tangent mode. More...
|
|
virtual float | GetValue () const =0 |
| Get the key value. More...
|
|
virtual void | SetValue (float pValue)=0 |
| Set the key value. More...
|
|
virtual FbxAnimCurveDef::EInterpolationType | GetInterpolation () const =0 |
| Get key's interpolation type. More...
|
|
virtual void | SetInterpolation (FbxAnimCurveDef::EInterpolationType pInterpolation)=0 |
| Set key's interpolation type. More...
|
|
virtual FbxAnimCurveDef::ETangentMode | GetTangentMode (bool pIncludeOverrides=false) const =0 |
| Get key's tangent mode. More...
|
|
virtual void | SetTangentMode (FbxAnimCurveDef::ETangentMode pTangentMode)=0 |
| Set tangent mode. More...
|
|
virtual FbxAnimCurveDef::EWeightedMode | GetTangentWeightMode () const =0 |
| Get key's tangent weight mode. More...
|
|
virtual void | SetTangentWeightMode (FbxAnimCurveDef::EWeightedMode pTangentWeightMode, FbxAnimCurveDef::EWeightedMode pMask=FbxAnimCurveDef::eWeightedAll)=0 |
| Set key's tangent weight mode as double value (cubic interpolation, non TCB tangent mode). More...
|
|
virtual void | SetTangentWeightAndAdjustTangent (FbxAnimCurveDef::EDataIndex pIndex, double pWeight)=0 |
| Adjust the actual tangent of the key so that the tangent control point (tangent extremity) stays closer to where it should be. More...
|
|
virtual FbxAnimCurveDef::EVelocityMode | GetTangentVelocityMode () const =0 |
| Get key's tangent velocity mode. More...
|
|
virtual void | SetTangentVelocityMode (FbxAnimCurveDef::EVelocityMode pTangentVelocityMode, FbxAnimCurveDef::EVelocityMode pMask=FbxAnimCurveDef::eVelocityAll)=0 |
| Set key's tangent velocity mode as double value (cubic interpolation, non TCB tangent mode). More...
|
|
virtual FbxAnimCurveDef::EConstantMode | GetConstantMode () const =0 |
| Get key constant mode. More...
|
|
virtual void | SetConstantMode (FbxAnimCurveDef::EConstantMode pMode)=0 |
| Set key's constant mode. More...
|
|
virtual float | GetDataFloat (FbxAnimCurveDef::EDataIndex pIndex) const =0 |
| Get the value of specified data of the key. More...
|
|
virtual void | SetDataFloat (FbxAnimCurveDef::EDataIndex pIndex, float pValue)=0 |
| Set the value of specified data of the key. More...
|
|
virtual void | SetTangentVisibility (FbxAnimCurveDef::ETangentVisibility pVisibility)=0 |
| Set tangent visibility mode. More...
|
|
virtual FbxAnimCurveDef::ETangentVisibility | GetTangentVisibility () const =0 |
| Return tangent visibility mode. More...
|
|
virtual void | SetBreak (bool pVal)=0 |
| Turn on or turn off the tangent break. More...
|
|
virtual bool | GetBreak () const =0 |
| Get if the tangent has a break. More...
|
|
Set key's tangent weight mode as double value (cubic interpolation, non TCB tangent mode).
- Parameters
-
pTangentWeightMode | Weight mode. |
pMask | Used to select the affected tangents. |
Sample01:
pMask is eWeightedRight, it will first be used to cancel out the current tangent weight mode eWeightedNextLeft, since they are not the same, it fails to cancel it out. Then the mask eWeightedRight will be used to define which tangent should be affected, since it is the same as pTangentWeightMode (eWeightedRight), so the eWeightedRight should be affected. In total, after above calls, both eWeightedNextLeft and eWeightedRight of this key are affected, so lAnimCurveKey->GetTangentWeightMode() will be FbxAnimCurveDef::eWeightedAll.
Sample02:
pMask is eWeightedNextLeft, it will first be used to cancel out the current tangent weight mode eWeightedAll, it will cancel out affect on eWeightedNextLeft, but leave affect on eWeightedRight. Then the mask eWeightedNextLeft will be used to define which tangent should be affected, since it is not the same as pTangentWeightMode (eWeightedRight), so the pMask won't affect anything in this step. In total, after above calls, only eWeightedRight of this key is still affected, so lAnimCurveKey->GetTangentWeightMode() will be FbxAnimCurveDef::eWeightedRight.