🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

How to do a loading screen?

Started by
0 comments, last by Mike00 23 years, 10 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!
Advertisement
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