| 171 | } |
| 172 | |
| 173 | void PlatformWorld::onCameraReset() { |
| 174 | for (auto it : _layers) { |
| 175 | if (Layer* layer = it.second) { |
| 176 | layer->setPosition(layer->getOffset()); |
| 177 | } |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | void PlatformWorld::removeLayer(int order) { |
| 182 | auto it = _layers.find(order); |
nothing calls this directly
no test coverage detected