| 106 | } |
| 107 | |
| 108 | void ActionManager::resumeTarget(Node* target) |
| 109 | { |
| 110 | auto it = _targets.find(target); |
| 111 | if (it != _targets.end()) |
| 112 | { |
| 113 | it->second.paused = false; |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | Vector<Node*> ActionManager::pauseAllRunningActions() |
| 118 | { |
no test coverage detected