| 117 | } |
| 118 | |
| 119 | void RegionTextureController::notifyChangeValue(std::string_view _value) |
| 120 | { |
| 121 | if (mParentData != nullptr) |
| 122 | { |
| 123 | DataPtr selected = mParentData->getChildSelected(); |
| 124 | if (selected != nullptr && selected->getType()->getName() == "RegionText") |
| 125 | { |
| 126 | MyGUI::IntCoord coord = MyGUI::IntCoord::parse(_value); |
| 127 | PropertyPtr property = selected->getProperty("Coord"); |
| 128 | PropertyUtility::executeAction(property, coord.print(), true); |
| 129 | } |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | void RegionTextureController::notifyChangeScope(std::string_view _scope) |
| 134 | { |
nothing calls this directly
no test coverage detected