| 170 | } |
| 171 | |
| 172 | void StateTextureController::updateCoords(std::string_view _value) |
| 173 | { |
| 174 | MyGUI::IntCoord coord; |
| 175 | if (MyGUI::utility::parseComplex(_value, coord.left, coord.top, coord.width, coord.height)) |
| 176 | mSize = coord.size(); |
| 177 | else |
| 178 | mSize.clear(); |
| 179 | |
| 180 | updateFrames(); |
| 181 | } |
| 182 | |
| 183 | void StateTextureController::updateFrames() |
| 184 | { |
nothing calls this directly
no test coverage detected