Advertisement

How to do a loading screen?

Started by August 13, 2000 05:08 PM
0 comments, last by Mike00 24 years, 3 months ago
How can I tell my program to display a square with a "Loading, Please Wait" texture on it while all my other objects are loading? Thanks!
Just do something like this

int init()
{
DisplayLoadingScreen();
LoadModels();
HideLoadingScreen();
return 1;
}

It''s that easy
(you can find me on IRC : #opengl on undernet)

This topic is closed to new replies.

Advertisement