We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent befa80b commit 28f65d3Copy full SHA for 28f65d3
3Dev-Editor/main.cpp
@@ -1272,7 +1272,7 @@ int main()
1272
path = projectDir + "/assets/models/" + filename;
1273
auto model = scene.GetModel(sceneTree->getSelectedItem().back().toStdString());
1274
scene.RemoveBones(model);
1275
- model->Load(path, aiProcess_Triangulate | aiProcess_FlipUVs | aiProcess_GenBoundingBoxes);
+ model->Load(path.string(), aiProcess_Triangulate | aiProcess_FlipUVs | aiProcess_GenBoundingBoxes);
1276
scene.StoreBones(model);
1277
readSceneTree();
1278
materialsList->removeAllItems();
0 commit comments