Search found 3947 matches

by vitek
Wed Jan 18, 2006 9:02 am
Forum: Beginners Help
Topic: Problems with camera type.
Replies: 12
Views: 929

First question... using namespace irr; using namespace gui; using namespace scene; class MyEventReceiver : public IEventReceiver { public: MyEventReceiver(IrrlichtDevice* device) : Device(device) { Device->grab(); } virtual ~MyEventReceiver() { Device->drop(); // remove all cameras for (irr::s32 c =...
by vitek
Wed Jan 18, 2006 8:29 am
Forum: Beginners Help
Topic: help me,please
Replies: 3
Views: 253

Pay special attention to the function declaration. You are not passing the correct parameters, so the compiler didn't see the function that you are trying to call. If you haven't seen it yet, look at the SColor [5th] parameter of the two draw2DImage functions. The function that you want takes an arr...