i'm a very newbie

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
logic_sci
Posts: 6
Joined: Wed Sep 17, 2003 8:28 pm

i'm a very newbie

Post by logic_sci »

i look at some tutorial of this engine and i saw something that i confuse
,why it don't have something like "delete someptr" i saw only
device->closedevice();
is it fully clear resources that loaded ?

and i want to know about this engine ,
if i use this engine to write commercial game .
can i use it ? and if i can ,what i "must do" when i use this engine ?
thank in advance
knightoflight
Posts: 199
Joined: Sun Aug 24, 2003 5:47 pm
Location: Germany

Post by knightoflight »

you should read the docu for the "drop"-Command.
There Niko wrote it clearly. You only have to drop things that are created with a "create"-command.

With removeTexture you can remove textures before closedevice, but closedevice would do it at the end for you.
Post Reply