loading rig pose, textures, body settings

This commit is contained in:
MihailRis
2024-07-09 21:19:29 +03:00
parent a68be271c6
commit d8c9fa1fe2
11 changed files with 96 additions and 17 deletions
+2 -2
View File
@@ -202,10 +202,10 @@ Map_sptr Map::map(const std::string& key) const {
return nullptr;
}
List* Map::list(const std::string& key) const {
List_sptr Map::list(const std::string& key) const {
auto found = values.find(key);
if (found != values.end())
return std::get<List_sptr>(found->second).get();
return std::get<List_sptr>(found->second);
return nullptr;
}