---------------------------------------------------------------------
| 82 | } |
| 83 | //--------------------------------------------------------------------- |
| 84 | NodeAnimationTrack *Animation::createNodeTrack() |
| 85 | { |
| 86 | NodeAnimationTrack *ret = |
| 87 | OGRE_NEW NodeAnimationTrack( this, static_cast<uint16>( mNodeTrackList.size() ) ); |
| 88 | |
| 89 | mNodeTrackList.push_back( ret ); |
| 90 | return ret; |
| 91 | } |
| 92 | //--------------------------------------------------------------------- |
| 93 | NodeAnimationTrack *Animation::createNodeTrack( Node *node ) |
| 94 | { |
no test coverage detected