| 160 | } |
| 161 | |
| 162 | void FrameTextureController::updateCoords(std::string_view _value) |
| 163 | { |
| 164 | MyGUI::IntCoord coord; |
| 165 | if (MyGUI::utility::parseComplex(_value, coord.left, coord.top, coord.width, coord.height)) |
| 166 | mSize = coord.size(); |
| 167 | else |
| 168 | mSize.clear(); |
| 169 | |
| 170 | updateFrames(); |
| 171 | } |
| 172 | |
| 173 | void FrameTextureController::updateFrames() |
| 174 | { |
nothing calls this directly
no test coverage detected