This commit is contained in:
2024-03-08 13:04:27 -05:00
parent ef75387af4
commit ff821f1c00

View File

@@ -298,7 +298,6 @@ namespace fgl::engine
for ( const tinygltf::Scene& scene : model.scenes )
{
std::cout << "Loading scene " << scene.name << std::endl;
std::cout << "Scene has " << scene.nodes.size() << " nodes" << std::endl;
for ( auto child : scene.nodes )
@@ -311,6 +310,6 @@ namespace fgl::engine
std::cout << "Meshes: " << model.meshes.size() << std::endl;
std::cout << "Finished loading model" << filepath << std::endl;
std::cout << "Finished loading model: " << filepath << std::endl;
}
} // namespace fgl::engine