| 17 | } |
| 18 | |
| 19 | void Window2::doHideAnimation() |
| 20 | { |
| 21 | GTween::to(getScale(), Vec2(0.1f, 0.1f), 0.3f)->setTarget(this, TweenPropType::Scale)->onComplete(AX_CALLBACK_0(Window2::hideImmediately, this)); |
| 22 | } |
| 23 | |
| 24 | void Window2::onShown() |
| 25 | { |
nothing calls this directly
no test coverage detected