| 283 | } |
| 284 | |
| 285 | std::string_view SkinExportSerializer::convertExportToEditorStateName(std::string_view _value) |
| 286 | { |
| 287 | MyGUI::MapString::const_iterator result = mExportToEditorNames.find(_value); |
| 288 | if (result != mExportToEditorNames.end()) |
| 289 | return result->second; |
| 290 | return _value; |
| 291 | } |
| 292 | |
| 293 | void SkinExportSerializer::registerMapName(std::string_view _value1, std::string_view _value2) |
| 294 | { |