Search found 12 matches

by NeRoX
Sun Jul 27, 2008 7:30 am
Forum: Beginners Help
Topic: Strange Runtime Error in Dev-C++ - Entry Point not Found
Replies: 1
Views: 158

LOL solved, the problem was that I copied the VS dll instead of GCC dll
thanks anyway
by NeRoX
Sun Jul 27, 2008 7:28 am
Forum: Beginners Help
Topic: GUI: Use existing, or write an own?
Replies: 3
Views: 264

building a GUI interface is not so hard in Irrlicht (without existing gui).. anyway you can use MFC with Irrlicht..
by NeRoX
Sun Jul 27, 2008 7:19 am
Forum: Beginners Help
Topic: Strange Runtime Error in Dev-C++ - Entry Point not Found
Replies: 1
Views: 158

Strange Runtime Error in Dev-C++ - Entry Point not Found

I compiled a simple Irrlicht application on Dev-C++ and when I try to play the game I get that error: Entry point not found _ZN3irr12createDeviceENS_5video13E_DRIVER_TYPEERKNS_4core11dimension2dIiEEjbbbPNS_14IEventReceiverEPKc could not be located in the dynamic link library Irrlicht.dll Any ideas??...
by NeRoX
Mon Jul 21, 2008 10:57 pm
Forum: Beginners Help
Topic: Hiding cursor when left mosue button clicked
Replies: 14
Views: 721

someone?

thanks
by NeRoX
Sun Jul 20, 2008 11:43 am
Forum: Beginners Help
Topic: Hiding cursor when left mosue button clicked
Replies: 14
Views: 721

Hiding cursor when left mosue button clicked

Hi, in my OnEvent I writed: if(event.MouseInput.Event == EMIE_LMOUSE_PRESSED_DOWN) mouseDownL = true; if (event.MouseInput.Event == EMIE_LMOUSE_LEFT_UP) mouseDownL = false; and in my loop I writted: device->getCursorControl()->setVisible(!mouseDownL); Now, if I just click on the left button, it's hi...
by NeRoX
Sat Jul 12, 2008 4:43 am
Forum: Beginners Help
Topic: Problem with RTS Camera
Replies: 9
Views: 2688

Thanks!!! :D :D :D :D

and last question.. what compiler u use? :P
by NeRoX
Fri Jul 11, 2008 11:04 pm
Forum: Open Discussion and Dev Announcements
Topic: merge DLL in EXE
Replies: 16
Views: 5910

Oh, thought closed-source dll... If you want Irrlicht DLL or any other Open Source DLL you can just put their source & header files into your project..
by NeRoX
Fri Jul 11, 2008 11:01 pm
Forum: Open Discussion and Dev Announcements
Topic: merge DLL in EXE
Replies: 16
Views: 5910

Put the DLL into a binary resource and use LoadResource to access it. There are samples around somewhere.
by NeRoX
Fri Jul 11, 2008 10:54 pm
Forum: Beginners Help
Topic: WINXP SP3 with irrlicht
Replies: 5
Views: 462

MasterGod wrote:I have SP3 and everything is fine.
Yes, me too.

BTW, I'm from Israel too :)
by NeRoX
Fri Jul 11, 2008 10:48 pm
Forum: Beginners Help
Topic: Problem with RTS Camera
Replies: 9
Views: 2688

I'm 100% sure that is Irrlicht 1.4.1. I downloaded it recently from Irrlicht website, and the ZIP name is: irrlicht-1.4.1.zip. It's the last version of the RTS camera. As I said, I fixed all these errors (added consts): 1>d:\dev\irrlicht-svn\examples\01.helloworld\main.cpp(837) : error C2259: 'RTSCa...
by NeRoX
Fri Jul 11, 2008 8:57 pm
Forum: Beginners Help
Topic: Problem with RTS Camera
Replies: 9
Views: 2688

Problem with RTS Camera

Hi, I'm new here.. I'm using Irrlicht 1.4.1 with Visual C++ 2008 Compiler, and I want to add RTS Camera to my game. I searched in the forums and found that class: http://irrlicht.sourceforge.net/phpBB2/viewtopic.php?t=17066#117579 and I cant get it working. the error is something about cannot instan...
by NeRoX
Fri Jul 11, 2008 8:17 pm
Forum: Code Snippets
Topic: (C++) RTSCamera
Replies: 39
Views: 32329

Im using Irrlicht 1.4.1 and I checking the last code, I added consts where it need and I have problem with it... it's not working.

http://irrlicht.sourceforge.net/phpBB2/ ... 931#163931

Thanks!