how to use

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
wraps

how to use

Post by wraps »

you explain to me what a "path" is( i know...i know...retard on the forum:|) and i'll use irrlicht..................
blayde
Posts: 45
Joined: Fri Jul 16, 2004 12:49 pm
Contact:

Post by blayde »

on your harddrive you have files and dir's ( directories ) right. the file name describes the identity of the file, ie it's name :). and the path describes how to get to that file, and it is a list of dir(s).

following that path will take you to the file, just as in realy life following a path will take you somewhere.

so in irrlicht you access a map by using
"c:\maps\map.bsp"
the path is the c:\maps

and to access a texture you might use
"..\..\textures\tex.jpg"
each of those ".." mean go up one directory from where i am now
and the path is ..\..\textures

hope this helps
Post Reply