Thanks both of you for that.
Solved!
Search found 49 matches
- Thu Jun 11, 2009 12:45 pm
- Forum: Beginners Help
- Topic: A simple one...(I hope)
- Replies: 5
- Views: 594
- Mon Jun 08, 2009 4:00 pm
- Forum: Beginners Help
- Topic: A simple one...(I hope)
- Replies: 5
- Views: 594
A simple one...(I hope)
Hi Folks,
Currently I use the following code to suppress the console output window:
#pragma comment(linker, "/SUBSYSTEM:windows /ENTRY:mainCRTStartup")
Is there a way to remove the window as above but pipe the output that would normally go there into a file? A kind of running log file.
Any help ...
Currently I use the following code to suppress the console output window:
#pragma comment(linker, "/SUBSYSTEM:windows /ENTRY:mainCRTStartup")
Is there a way to remove the window as above but pipe the output that would normally go there into a file? A kind of running log file.
Any help ...
- Tue May 12, 2009 9:44 am
- Forum: Beginners Help
- Topic: Hidden Line Removal
- Replies: 13
- Views: 1846
- Tue May 05, 2009 4:25 pm
- Forum: Beginners Help
- Topic: Hidden Line Removal
- Replies: 13
- Views: 1846
- Tue May 05, 2009 1:06 pm
- Forum: Beginners Help
- Topic: Drawing Quads?
- Replies: 12
- Views: 1198
I think your loop is stopping too soon
The above code is only adding 3 points
Code: Select all
for(s32 i = 1; i < 4; i++)
bounds.addInternalPoint(vertices[i].Pos); - Tue May 05, 2009 12:07 pm
- Forum: Beginners Help
- Topic: Camera & Event Receiver
- Replies: 3
- Views: 520
- Tue May 05, 2009 11:51 am
- Forum: Beginners Help
- Topic: Hidden Line Removal
- Replies: 13
- Views: 1846
- Thu Apr 30, 2009 4:54 pm
- Forum: Beginners Help
- Topic: Camera & Event Receiver
- Replies: 3
- Views: 520
Not to worry folks - Solved it.
I needed to change the OnEvent function to:
from the original:
Hope this helps anyone that may have the same problem
Thanks,
Bob
I needed to change the OnEvent function to:
Code: Select all
OnEvent(const SEvent &event)Code: Select all
OnEvent(SEvent event)Hope this helps anyone that may have the same problem
Thanks,
Bob
- Thu Apr 30, 2009 4:32 pm
- Forum: Beginners Help
- Topic: Camera & Event Receiver
- Replies: 3
- Views: 520
Camera & Event Receiver
Hi All,
After updating my irrlicht base to 1.5 from 1.3 I noticed the Maya camera has lost its setPosition/setTarget capabilities so I have copied the Maya camera class code+header to my project and now create it by hand like this:
Camera = new CCameraMayaSceneNode(smgr->getRootSceneNode(),smgr ...
After updating my irrlicht base to 1.5 from 1.3 I noticed the Maya camera has lost its setPosition/setTarget capabilities so I have copied the Maya camera class code+header to my project and now create it by hand like this:
Camera = new CCameraMayaSceneNode(smgr->getRootSceneNode(),smgr ...
- Thu Apr 30, 2009 1:28 pm
- Forum: Beginners Help
- Topic: Event receiver problem....
- Replies: 2
- Views: 363
- Thu Apr 30, 2009 1:18 pm
- Forum: Beginners Help
- Topic: Event receiver problem....
- Replies: 2
- Views: 363
Event receiver problem....
Hi Folks,
I've just updated my Irrlicht version to 1.5 from 1.3 but I can't get a bit of code to compile with the new SDK and I'm not sure whats changed..
Heres my error:
error C2259: 'MyEventReceiver' : cannot instantiate abstract class
due to following members:
'bool irr::IEventReceiver ...
I've just updated my Irrlicht version to 1.5 from 1.3 but I can't get a bit of code to compile with the new SDK and I'm not sure whats changed..
Heres my error:
error C2259: 'MyEventReceiver' : cannot instantiate abstract class
due to following members:
'bool irr::IEventReceiver ...
- Thu Apr 30, 2009 10:08 am
- Forum: Beginners Help
- Topic: Hidden Line Removal
- Replies: 13
- Views: 1846
- Mon Mar 17, 2008 2:35 pm
- Forum: Beginners Help
- Topic: AddTextSceneNode (try to change text )
- Replies: 12
- Views: 2441
Can you not do this:
or the c# equivalent which would be:
Code: Select all
// create the text scene node
ITextSceneNode *txt = Device->getSceneManager()->addTextSceneNode (...);
....
// change the text
txt->setText(L"New Text");Code: Select all
txt.setText(L"New Text");- Mon Mar 17, 2008 2:28 pm
- Forum: Beginners Help
- Topic: Context menu.
- Replies: 1
- Views: 476
- Thu Jan 10, 2008 2:47 pm
- Forum: Beginners Help
- Topic: Urgent Question: Hiding Status Window
- Replies: 14
- Views: 989
or if you want to still want to work with main() and you are using Visual Studio you can add this near the top of your code:
Code: Select all
#pragma comment(linker, "/SUBSYSTEM:windows /ENTRY:mainCRTStartup")