Merge pull request #837 from overte-org/fix/gltf_url

Remove debug print with URL from ModelLoader
This commit is contained in:
ksuprynowicz 2024-02-26 23:25:43 +01:00 committed by GitHub
commit a1089b5b50
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -20,6 +20,5 @@ hfm::Model::Pointer ModelLoader::load(const hifi::ByteArray& data, const hifi::V
if (!serializer) {
return hfm::Model::Pointer();
}
qDebug() << "ModelLoader::load: " << url;
return serializer->read(data, mapping, url);
}