| 593 | } |
| 594 | |
| 595 | void SchedulerUpdate::removeUpdates(float /*dt*/) |
| 596 | { |
| 597 | auto& children = getChildren(); |
| 598 | |
| 599 | for (auto&& c : children) |
| 600 | { |
| 601 | auto obj = static_cast<Object*>(c); |
| 602 | auto node = static_cast<Node*>(obj); |
| 603 | |
| 604 | if (!node) |
| 605 | { |
| 606 | break; |
| 607 | } |
| 608 | node->unscheduleAllCallbacks(); |
| 609 | } |
| 610 | } |
| 611 | |
| 612 | std::string SchedulerUpdate::title() const |
| 613 | { |
nothing calls this directly
no test coverage detected