Loading Image
Loading Image
Can some one help me to make code that can display a load image when I launch my irrlicht app.
Loading Image Start screen
Yeah but how do i link it to the loading of my content?
so when stuff is finished loading it goes away or I can hold it on screen for like 10 sec then fade it off for like 15 frames?
so when stuff is finished loading it goes away or I can hold it on screen for like 10 sec then fade it off for like 15 frames?
I would imagine the best way to do it would be this way:
Code: Select all
create irrlicht device
device->beginscene //probably need this
video->drawimage //loading image here
device->endscene //and this as well
//now right here load everything you need (I assume you mean meshes, etc.)
while (device->run)
{
...