getNodeType() Drives me nuts

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
johann_gambolputty
Posts: 28
Joined: Mon Nov 02, 2009 9:51 am

getNodeType() Drives me nuts

Post by johann_gambolputty »

SOLVED :
It was a problem in my code.I used strcmp (c8* to std::string.c_str()) to compare node names and return the matched node and that doesnt worked the returned node was always wrong.(i dont know why) So i built a std::string from c8*
and compared the two std::string instead.
Post Reply