Search found 2 matches

by msz006
Wed Jan 24, 2007 6:17 pm
Forum: Project Announcements
Topic: MultiByte Language support pack for Irrlicht
Replies: 62
Views: 70835

I merged irrTT and uirou's patch to Irrlicht1.2 again. http://etwas.wolfish.org/Irrlicht/IrrTT-1.2-win32Linux.zip It works nicely. Thanks for your effort. BTW, don't you have any memory leak from this patch? I got a bunch of leaks. Detected memory leaks! Dumping objects -> {24756} normal block at 0...
by msz006
Fri Dec 01, 2006 11:35 pm
Forum: Beginners Help
Topic: setProjectionMatrix problem in Irrlicht 1.2
Replies: 6
Views: 537

Re: setProjectionMatrix problem in Irrlicht 1.2

QuantumLeap, I updated the engine today and also experienced same problem. To fix it, change the order of arguments on below line: OrthoMatrix.buildProjectionMatrixOrthoLH(320.0f,240.0f,300.0f,-300.0f); like this: OrthoMatrix.buildProjectionMatrixOrthoLH(320.0f,240.0f,-300.0f,300.0f); It solved the ...