| 100 | } |
| 101 | |
| 102 | bool SkinManager::isExist(std::string_view _name) const |
| 103 | { |
| 104 | std::string_view skinName = BackwardCompatibility::getSkinRename(_name); |
| 105 | IResource* result = ResourceManager::getInstance().getByName(skinName, false); |
| 106 | return (result != nullptr) && (result->isType<ResourceSkin>()); |
| 107 | } |
| 108 | |
| 109 | void SkinManager::setDefaultSkin(std::string_view _value) |
| 110 | { |