| 97 | // pause / resume |
| 98 | |
| 99 | void ActionManager::pauseTarget(Node* target) |
| 100 | { |
| 101 | auto it = _targets.find(target); |
| 102 | if (it != _targets.end()) |
| 103 | { |
| 104 | it->second.paused = true; |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | void ActionManager::resumeTarget(Node* target) |
| 109 | { |