Hello,
Is there anyway of displaying a splash screen or displaying like a message that says loading... whilst I startup my irrlicht program. I am loading like 6000 models which takes some time. I dont want my user/Player just seeing a dos startup LOADING screen.
Splash screen on program startup
And youll need something like:
and at same time update progress bar
didnt try it but might work.
Code: Select all
gui = device->getGUIEnvironment();
text = gui->addStText(...);
IAnimMesh* mesh1 = smgr->getMesh("mesh1.3ds");
do
{
driver->beginScene(...);
text->setText(L"Loading meshes 1%");
gui->drawAll();
driver->endScene();
}while(false);
IAnimMesh* mesh2 = smgr->getMesh("mesh2.3ds");
do
{
driver->beginScene(...);
text->setText(L"Loading meshes 2%");
gui->drawAll();
driver->endScene();
}while(false);
...
IAnimMesh* mesh6000 = smgr->getMesh("mesh6000.3ds");
do
{
driver->beginScene(...);
text->setText(L"Loading meshes 100%");
gui->drawAll();
driver->endScene();
}while(false);
didnt try it but might work.