This commit is contained in:
Jiga228
2025-10-18 16:14:14 +07:00
parent cafad47679
commit 450b3839c6
4 changed files with 7 additions and 9 deletions
+1 -1
View File
@@ -85,7 +85,7 @@ ModelManager::StaticModel* ModelManager::LoadModel(const std::string& name)
new_counter.model = new StaticModel(model_data, name);
new_counter.model->OnDestroy.bind(this, &ModelManager::OnDestroySometimeModelCaller);
models.try_emplace(hash, new_counter);
OnLoadSometimeModel.Call(new_counter.model);
return new_counter.model;
}