| 124 | } |
| 125 | |
| 126 | void SkinItem::_setTextureName(std::string_view _texture) |
| 127 | { |
| 128 | mTextureName = _texture; |
| 129 | mTexture = RenderManager::getInstance().getTexture(mTextureName); |
| 130 | |
| 131 | setRenderItemTexture(mTexture); |
| 132 | } |
| 133 | |
| 134 | const std::string& SkinItem::_getTextureName() const |
| 135 | { |
nothing calls this directly
no test coverage detected