Progressbar for loading a heavy *.OBJ file
Unsolved
Game Development
-
Hi,
I want to know how can I implement a progress bar dialog for loading a heavy obj file via Qt3DRender::QMesh(), because during the load I want to inform the user that the file loading is still under progress.
my3Dobject = new Qt3DRender::QMesh(); QUrl url; url.setScheme("file"); url.setPath("/home/item.obj"); my3Dobject->setSource( url ); my3Dobject->setEnabled(true);
Any suggestions will be appreciated.