| 209 | } |
| 210 | |
| 211 | void PointerManager::setLayerName(std::string_view _value) |
| 212 | { |
| 213 | Update(); |
| 214 | |
| 215 | mLayerName = _value; |
| 216 | if (LayerManager::getInstance().isExist(_value)) |
| 217 | LayerManager::getInstance().attachToLayerNode(mLayerName, mMousePointer); |
| 218 | } |
| 219 | |
| 220 | void PointerManager::Update() |
| 221 | { |
no test coverage detected