Merge remote-tracking branch 'origin/main' into SP3-4-editor_fix

This commit is contained in:
Sri Sham Haran 2022-09-28 10:14:20 +08:00
commit ac70758341
1 changed files with 12 additions and 9 deletions

View File

@ -41,6 +41,8 @@ namespace Sandbox
auto meshes = SHADE::SHAssetManager::GetAllMeshes(); auto meshes = SHADE::SHAssetManager::GetAllMeshes();
std::vector<Handle<SHMesh>> handles; std::vector<Handle<SHMesh>> handles;
for (auto const& mesh : meshes) for (auto const& mesh : meshes)
{
if (mesh.meshName == "Cube.012")
{ {
handles.push_back(graphicsSystem->AddMesh( handles.push_back(graphicsSystem->AddMesh(
mesh.header.vertexCount, mesh.header.vertexCount,
@ -52,6 +54,7 @@ namespace Sandbox
mesh.indices.data() mesh.indices.data()
)); ));
} }
}
graphicsSystem->BuildMeshBuffers(); graphicsSystem->BuildMeshBuffers();
//Test Textures //Test Textures