Some Problems! =/

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
Gladius_Coldhead
Posts: 56
Joined: Thu Oct 12, 2006 5:15 am

Some Problems! =/

Post by Gladius_Coldhead »

Hi.
I have some questions:

-Somebody know a good Landscaper/Terrain free Editor?Or a good way to make a terrain?

-How i Make a Sun with Lens Flare effect?

-How i make a Pause System?

Thanks :D
JP
Posts: 4526
Joined: Tue Sep 13, 2005 2:56 pm
Location: UK
Contact:

Post by JP »

Pause system can be simply done by having a bool isPaused, for example, and then in your render loop only render and carry out other operations if isPaused is false. Then you can toggle isPaused from your event receiver.

For example:

while(device->run()) {

if (!isPaused)
// render + other operations

}
Image Image Image
Lideln
Posts: 79
Joined: Sat Jun 24, 2006 11:35 am
Location: Paris, France

Post by Lideln »

For the terrain, there is a FAQ on this subject, unless Im mistaken.
You can use 3DSMax or Blender for example, there are tutorials about that all over the web.

Here is a link for one tutorial (Blender, because it is free and not windows-specific) :
http://blender.free.fr/docs/didactic/te ... errain.htm

Hope this helps,
--
Lideln, France
Post Reply