| 50 | } |
| 51 | |
| 52 | void BasicAppendTweenApp::startTweening() |
| 53 | { |
| 54 | timeline().apply( &mPos, (vec2)mDestinations[0], 0.5f, EaseInOutQuad() ); |
| 55 | for( int i=1; i<mNumDestinations; i++ ){ |
| 56 | timeline().appendTo( &mPos, (vec2)mDestinations[i], 0.5f, EaseInOutQuad() ); |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | |
| 61 | void BasicAppendTweenApp::draw() |
nothing calls this directly
no test coverage detected