Search found 5 matches

by mkEason
Thu Nov 26, 2009 10:01 am
Forum: Beginners Help
Topic: Displaying text and debugging
Replies: 10
Views: 640

hybrid wrote:Ah yes, both interface methods use raw pointers, which doesn't help in automatic type conversions. write core::stringw(node->getName()).c_str()
it works! Thanks a lot.
by mkEason
Wed Nov 25, 2009 12:39 pm
Forum: Beginners Help
Topic: Displaying text and debugging
Replies: 10
Views: 640

big error is not what I'd call a descriptive explanation. Please make sure you understand the basic C++ things needed for this situation, and post the full compiler message if you cannot figure it out. here is the error I got: ERROR 31 error C2664: 'irr::gui::IGUIEnvironment::addStaticText' : canno...
by mkEason
Wed Nov 25, 2009 10:19 am
Forum: Beginners Help
Topic: Displaying text and debugging
Replies: 10
Views: 640

setText is for static text. static text doesnt mean that it can only have one value always, but means that the user can't change it. you can change it any time from your app. myText->setText(L"MyText"); sorry for another stupid question.... I have no idea about where is "myText"...
by mkEason
Wed Nov 25, 2009 9:28 am
Forum: Beginners Help
Topic: Displaying text and debugging
Replies: 10
Views: 640

hybrid wrote:setText should be the way, unless I'm confused with other APIs.
I am very new to irrlicht, I have the same problem to show dynamica text, may I ask that what object/class is "setText" belongs to?
by mkEason
Wed Nov 11, 2009 6:55 am
Forum: Beginners Help
Topic: Animated models in Irrlicht
Replies: 6
Views: 794

You could use collada :) http://sourceforge.net/projects/colladamaya/ but some people is saying that collada does not supporting animation export so far. http://irrlicht.sourceforge.net/phpBB2/viewtopic.php?t=35825&highlight=collada so who is right? In fact, I tried exporting collada myself, wi...