| 89 | } |
| 90 | |
| 91 | bool AnimBase::isComplete() const |
| 92 | { |
| 93 | if( ! mParentTimeline ) |
| 94 | return true; |
| 95 | else { |
| 96 | TimelineItemRef lastTween = mParentTimeline->findLastEnd( mVoidPtr ); |
| 97 | if( lastTween ) |
| 98 | return lastTween->isComplete(); |
| 99 | else |
| 100 | return true; |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | void AnimBase::stop() |
| 105 | { |
no test coverage detected