everything works exept a problem with irrlicht (latest version):
i get the message:
80 C:\eindwerk\code\demo\SpecialFX.cpp 'class irr::scene::ISceneManager' has no member named 'getStringParameters'
anyone has a solution?
import 3ds file WITH textures ?
-
- Posts: 34
- Joined: Wed Aug 10, 2005 6:15 am
do it like this:
scene::ISceneManager* scmgr = device->getSceneManager();
/*this will define scmgr, but use smgr, that's the code culture (you must have defined the 'device' already of course)
*/
scmgr->getStringParameters()->setParameter(scene::MY3D_TEXTURE_PATH, "path/to/your/directory");
write a message if you secceed...for bug hunt
scene::ISceneManager* scmgr = device->getSceneManager();
/*this will define scmgr, but use smgr, that's the code culture (you must have defined the 'device' already of course)
*/
scmgr->getStringParameters()->setParameter(scene::MY3D_TEXTURE_PATH, "path/to/your/directory");
write a message if you secceed...for bug hunt
in 0.11 the set texture path changed to:
Code: Select all
smgr->getParameters()->setParameter(scene::MY3D_TEXTURE_PATH, "./yourtextures/");
-
- Posts: 17
- Joined: Thu Aug 11, 2005 11:57 am
MAYDAY
i'm not satisfied at all with the quality of the images when transformed from max to my3d.
serveral texture options from max aren't visible when I execute my irrlicht program...
help anyone?
serveral texture options from max aren't visible when I execute my irrlicht program...
help anyone?