Search found 224 matches
- Sun Mar 03, 2013 4:44 pm
- Forum: Beginners Help
- Topic: How to determine if node is illuminated
- Replies: 5
- Views: 989
Re: How to determine if node is illuminated
Thanks guys, I have a clear view now of what I have to do.
- Sun Mar 03, 2013 12:40 am
- Forum: Beginners Help
- Topic: How to determine if node is illuminated
- Replies: 5
- Views: 989
Re: How to determine if node is illuminated
Thanks for responding Mel :) About the first two, as you have mentioned, they require a static level and I have a dynamic light that moves about so they won't suit me. The third option suits me quite well, and I thought it would be something along these lines but I wasn't sure. While implementing it...
- Fri Mar 01, 2013 11:34 am
- Forum: Beginners Help
- Topic: How to determine if node is illuminated
- Replies: 5
- Views: 989
How to determine if node is illuminated
Hi all, I've tried to search for my problem but couldn't find anything useful, so I turn directly to your wise counsel. I have a node that is the player, in a room all by himself and dynamic light ( acting as an innocent torch). I would like to find out if the player is in shadow or light, like in t...
- Tue Dec 04, 2007 7:50 am
- Forum: Code Snippets
- Topic: New GUI skin [update: new skins, support for 1.5/1.6]
- Replies: 112
- Views: 75744
- Sat Dec 01, 2007 9:57 pm
- Forum: Code Snippets
- Topic: New GUI skin [update: new skins, support for 1.5/1.6]
- Replies: 112
- Views: 75744
- Sat Dec 01, 2007 3:47 pm
- Forum: Code Snippets
- Topic: New GUI skin [update: new skins, support for 1.5/1.6]
- Replies: 112
- Views: 75744
1.4 seems to have screwed some stuff. I'm getting this: 1>------ Build started: Project: Old West, Configuration: Debug Win32 ------ 1>Compiling... 1>Main.cpp 1>c:\documents and settings\cleves\my documents\visual studio 2005\projects\old west\old west\main.cpp(156) : error C2259: 'irr::gui::CImageG...
- Fri Nov 30, 2007 2:40 pm
- Forum: Beginners Help
- Topic: Weird xml problem
- Replies: 3
- Views: 583
Weird xml problem
I'm trying to create a simple XML reader but something is wrong. I create a reader: IrrXMLReader* XmlReaderMenus = createIrrXMLReader("menus.xml"); if(XmlReaderMenus == 0) printf("Init of XML Reader has failed.\n"); But it always fails, no matter what. I know for sure that the xm...
- Fri Jun 29, 2007 1:00 pm
- Forum: Code Snippets
- Topic: New GUI skin [update: new skins, support for 1.5/1.6]
- Replies: 112
- Views: 75744
- Fri Jun 29, 2007 11:37 am
- Forum: Code Snippets
- Topic: New GUI skin [update: new skins, support for 1.5/1.6]
- Replies: 112
- Views: 75744
- Fri Apr 20, 2007 2:03 pm
- Forum: Project Announcements
- Topic: IrrNewt irrlicht\newton framework >> SVN access
- Replies: 432
- Views: 132196
- Mon Apr 09, 2007 10:45 am
- Forum: Beginners Help
- Topic: converting wchar_t to c8
- Replies: 2
- Views: 507
converting wchar_t to c8
Is there anyway to convert wchar_t to c8?
I'm reading something from xml I want to use as a filename, but getTexture takes only c8.
Thanks in advance.
I'm reading something from xml I want to use as a filename, but getTexture takes only c8.
Thanks in advance.
- Fri Aug 11, 2006 2:28 pm
- Forum: Project Announcements
- Topic: Silent Depth - persistent submarine online game
- Replies: 23
- Views: 6037
- Tue May 30, 2006 11:27 am
- Forum: Project Announcements
- Topic: Particle Editor (current version: debug 0.2.162)
- Replies: 66
- Views: 17662
- Wed May 24, 2006 8:06 pm
- Forum: Project Announcements
- Topic: Particle Editor (current version: debug 0.2.162)
- Replies: 66
- Views: 17662
- Sun May 07, 2006 1:55 pm
- Forum: Beginners Help
- Topic: Displaying A Number with the GUI
- Replies: 1
- Views: 462
You can turn it into a string, and then using c_str() function display it as static text
Code: Select all
stringw temp;
temp+=5;
setText(temp.c_str())