---------------------------------------------------------------------
| 70 | } |
| 71 | //--------------------------------------------------------------------- |
| 72 | KeyFrame *AnimationTrack::getKeyFrame( unsigned short index ) const |
| 73 | { |
| 74 | // If you hit this assert, then the keyframe index is out of bounds |
| 75 | assert( index < (ushort)mKeyFrames.size() ); |
| 76 | |
| 77 | return mKeyFrames[index]; |
| 78 | } |
| 79 | //--------------------------------------------------------------------- |
| 80 | Real AnimationTrack::getKeyFramesAtTime( const TimeIndex &timeIndex, KeyFrame **keyFrame1, |
| 81 | KeyFrame **keyFrame2, |