Search found 8 matches

by cjpaver
Tue May 17, 2011 7:14 pm
Forum: Beginners Help
Topic: New to Irrlicht - Trying to use with Visual Studio 2008
Replies: 7
Views: 636

Looking back, I'm embarrassed to have even asked that question.

Console v. Window doesn't matter unless you want to (and you should) print debugging info in the console window.
by cjpaver
Tue May 17, 2011 6:55 pm
Forum: FAQs, Tutorials, Howtos, and external tool lists
Topic: Irrlicht basics tutorial [Note: HUGE POST]
Replies: 69
Views: 88283

Also, if your using the wxDev-CPP IDE, then you don't need the pragma comment, you can just link to it in the linker options. Just thought I'd put that up as a side note #pragma comment(lib, Irrlicht.lib); I had no clue what this did, but included it because all the other examples had it. With VS, ...
by cjpaver
Tue May 17, 2011 6:32 pm
Forum: Beginners Help
Topic: Changes to camera methods
Replies: 12
Views: 3019

Well, this half-complete implementation is even not enough for any scene node, but especially not for a camera scene node. You must implement all pure virtual methods of the interfaces you use. Thanks, I didn't know that I had to do all of the pure virtuals. I thought I only had to alter the one I ...
by cjpaver
Tue May 17, 2011 3:37 am
Forum: Beginners Help
Topic: Changes to camera methods
Replies: 12
Views: 3019

I want to overwrite it for an assignment to write my own calculations. I know they exist already in Irrlicht, but it's about the coding experience, I guess. So, in tutorial 003 I found: class DiffCamera : public scene::ICameraSceneNode { public: DiffCamera (scene::ICameraSceneNode* parent, scene::IS...
by cjpaver
Tue May 17, 2011 12:23 am
Forum: Beginners Help
Topic: Changes to camera methods
Replies: 12
Views: 3019

I'm sorry, I don't understand how that helps. Using the new keyword creates an instance of a camera that Irrlicht still doesn't know how to use. int main() { IrrlichtDevice *device; device = createDevice( EDT_DIRECT3D9, dimension2d<u32>(800, 600), 16, false, false, false, &receiver); IVideoDrive...
by cjpaver
Mon May 16, 2011 12:16 am
Forum: Beginners Help
Topic: Changes to camera methods
Replies: 12
Views: 3019

Changes to camera methods

I need to change the way that a camera created with ICameraSceneNode rotates. I've been able to successfully overwrite the methods in the IEventReceiver from the other posts and tutorials to create my own event handler. I run into a problem when I try to do this the same way for the camera. If I: cl...
by cjpaver
Mon Feb 07, 2011 9:11 pm
Forum: Beginners Help
Topic: New to Irrlicht - Trying to use with Visual Studio 2008
Replies: 7
Views: 636

I have to test this out later, but I found what I hope will be my answer when I can get home to test it...

http://irrlicht.sourceforge.net/phpBB2/ ... ed3b4e3009
by cjpaver
Mon Feb 07, 2011 9:00 pm
Forum: Beginners Help
Topic: New to Irrlicht - Trying to use with Visual Studio 2008
Replies: 7
Views: 636

New to Irrlicht - Trying to use with Visual Studio 2008

Hopefully a simple answer... I have the libraries set up properly. I have my irrlicht.dll in the right place. I can compile and run the tutorials. How do I create my own project for this? Copying this and editing the internal still keeps a reference to somewhere related to the one I've copied. Which...