| 337 | } |
| 338 | |
| 339 | void CADrawerController::scheduleHideAction(float dt) |
| 340 | { |
| 341 | if (m_fCurrDivision < FLT_EPSILON) |
| 342 | { |
| 343 | CAScheduler::unschedule(schedule_selector(CADrawerController::scheduleHideAction), this); |
| 344 | this->hideEnded(); |
| 345 | m_bAnimation = false; |
| 346 | } |
| 347 | else |
| 348 | { |
| 349 | m_fCurrDivision = MAX(m_fCurrDivision - m_fDivision/12.0f * 60 * dt, 0); |
| 350 | this->updateViewFrame(); |
| 351 | } |
| 352 | } |
| 353 | |
| 354 | bool CADrawerController::isReachBoundaryLeft() |
| 355 | { |
nothing calls this directly
no test coverage detected