| 9 | } |
| 10 | |
| 11 | void Window2::doShowAnimation() |
| 12 | { |
| 13 | setScale(0.1f, 0.1f); |
| 14 | setPivot(0.5f, 0.5f); |
| 15 | |
| 16 | GTween::to(getScale(), Vec2::ONE, 0.3f)->setTarget(this, TweenPropType::Scale)->onComplete(AX_CALLBACK_0(Window2::onShown, this)); |
| 17 | } |
| 18 | |
| 19 | void Window2::doHideAnimation() |
| 20 | { |
nothing calls this directly
no test coverage detected