Function set for change in keyframe value or time.
This function set is used for keyframe deltas of type MFn::kKeyframeDeltaMove. These keyframe deltas are generated from 'move' events. For example, the user drags or scales a key from one position to another.
#include <MFnKeyframeDeltaMove.h>

Public Member Functions |
|
| virtual MFn::Type | type () const |
| Function set type. |
|
| virtual | ~MFnKeyframeDeltaMove () |
| Destructor. |
|
| MFnKeyframeDeltaMove () | |
| Default constructor. |
|
| MFnKeyframeDeltaMove (MObject &object, MStatus *ReturnStatus=NULL) | |
| Constructor. |
|
| MTime | previousTime (MStatus *ReturnStatus=NULL) const |
| The previous time value of this key.
|
|
| MTime | currentTime (MStatus *ReturnStatus=NULL) const |
| The current/current time value. |
|
| double | previousValue (MStatus *ReturnStatus=NULL) const |
| The previous value of the key prior to the
change. |
|
| double | currentValue (MStatus *ReturnStatus=NULL) const |
| The current value of the key. |
|
| unsigned int | previousIndex (MStatus *ReturnStatus=NULL) const |
| The previous index value of this key.
|
|
| virtual unsigned int | keyIndex (MStatus *ReturnStatus=NULL) const |
| The current index value of this key.
|
|
| MFnKeyframeDeltaMove (const MObject &object, MStatus *ReturnStatus=NULL) | |
| Constructor. |
|
Protected Member Functions |
|
| virtual const char * | className () const |
| Class name. |
|
| MFnKeyframeDeltaMove | ( | MObject & | object, |
| MStatus * | ReturnStatus =
NULL |
||
| ) |
Constructor.
Class constructor that initializes the function set to the given MObject.
| [in] | object | The MObject to attach the function set to |
| [out] | ReturnStatus | the return status |
| MFnKeyframeDeltaMove | ( | const MObject & | object, |
| MStatus * | ReturnStatus =
NULL |
||
| ) |
Constructor.
Class constructor that initializes the function set to the given MObject.
| [in] | object | The MObject to attach the function set to |
| [out] | ReturnStatus | the return status |
| MFn::Type type | ( | ) | const [virtual] |
Function set type.
Return the class type : MFn::kKeyframeDeltaMove.
Reimplemented from MFnKeyframeDelta.
| const char * className | ( | ) | const [protected, virtual] |
The previous time value of this key.
| [out] | ReturnStatus | Return Code |
The current/current time value.
| [out] | ReturnStatus | Status code. |
| double previousValue | ( | MStatus * | ReturnStatus =
NULL |
) | const |
The previous value of the key prior to the change.
The value corresponds to the units of the animation curve.
| [out] | ReturnStatus | Return code. |
| double currentValue | ( | MStatus * | ReturnStatus =
NULL |
) | const |
The current value of the key.
The value corresponds to the units of the animation curve.
| [out] | ReturnStatus | Return code. |
| unsigned int previousIndex | ( | MStatus * | ReturnStatus =
NULL |
) | const |
The previous index value of this key.
If a key has been moved over another key then you can use this previous index to figure out where the key was moved from.
| [out] | ReturnStatus | Return code. |
| unsigned int keyIndex | ( | MStatus * | ReturnStatus =
NULL |
) | const [virtual] |
The current index value of this key.
| [out] | ReturnStatus | Return code. |
Reimplemented from MFnKeyframeDelta.