Optimizing Irrlicht

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
Dirtbiker
Posts: 29
Joined: Wed Aug 31, 2005 7:02 am
Location: U.S.
Contact:

Optimizing Irrlicht

Post by Dirtbiker »

when i run irrlicht, my processor runs at 100% till my system overheats. How would you go about making irrlicht use less system resources?
Acki
Posts: 3496
Joined: Tue Jun 29, 2004 12:04 am
Location: Nobody's Place (Venlo NL)
Contact:

Post by Acki »

You could do a Sleep(1) within the main loop...
But it depands on the software you're going to code...
If there are many nodes, animations and so on, you could loos performance...
while(!asleep) sheep++;
IrrExtensions:Image
http://abusoft.g0dsoft.com
try Stendhal a MORPG written in Java
specialtactics
Posts: 17
Joined: Tue Dec 09, 2003 9:03 am
Location: Germany

Post by specialtactics »

if your system overheats when running at 100% you should recheck your configuration!

but acki is right, limiting a game to a specific fps, by delaying it with someting like sleep might be a good idea too. games running at 1000+ fps is just overkill...
Post Reply