| 143 | } |
| 144 | |
| 145 | void IndexTextureController::updateCoords(std::string_view _value) |
| 146 | { |
| 147 | MyGUI::IntCoord coord; |
| 148 | if (MyGUI::utility::parseComplex(_value, coord.left, coord.top, coord.width, coord.height)) |
| 149 | mSize = coord.size(); |
| 150 | else |
| 151 | mSize.clear(); |
| 152 | |
| 153 | updateFrames(); |
| 154 | } |
| 155 | |
| 156 | void IndexTextureController::updateFrames() |
| 157 | { |
nothing calls this directly
no test coverage detected