Search found 9 matches

by juantar
Sun May 06, 2007 12:07 am
Forum: FAQs, Tutorials, Howtos, and external tool lists
Topic: Tip to compile Irrlicht in linux
Replies: 12
Views: 17392

irrlicht on ubuntu 7.04

For ubuntu 7.04 I had to do the following to be able to compile irrlicht apps: sudo apt-get install g++ sudo apt-get install libgl1-mesa-dev libglu1-mesa-dev libx11-dev x11proto-core-dev x11proto-gl-dev x11proto-kb-dev libpng12-dev zlib1g-dev x11proto-xf86vidmode-dev libxxf86vm-dev libxau-dev libxex...
by juantar
Tue Apr 24, 2007 12:12 am
Forum: Beginners Help
Topic: .X files support
Replies: 1
Views: 462

.X files support

Is the support for .x files going to improve? I have a mesh that I exported from Blender using the DirectX exporter mod. When I open the .x file in a regular x editor the mesh looks fine, however when I import it into IrrEdit it looks nothing like the original mesh. Is this a common problem or is th...
by juantar
Tue Apr 10, 2007 12:42 am
Forum: Bug reports
Topic: [irr 1.2] [Fixed] Listspointers
Replies: 7
Views: 533

I get the same problem with the list's copy constructor. By debugging I found out that my program crashes in these lines: void clear() { SKListNode* node = root; while(node) { SKListNode* next = node->next; delete node; node = next; } root = 0; last = 0; size = 0; } root happens to have a junk value...
by juantar
Sat Apr 07, 2007 10:03 pm
Forum: Beginners Help
Topic: Corner pixels error when trying to load font file
Replies: 0
Views: 103

Corner pixels error when trying to load font file

I created a font bmp file using the Font tool shipped with irrlicht 1.3. When I tried to set the font to that file, I get "The amount of upper corner pixels or lower corner pixels is == 0, font file may be corrupted" and thus it does not use my font but instead uses the default irrlicht fo...
by juantar
Tue Aug 08, 2006 8:03 pm
Forum: Beginners Help
Topic: Collision Help ! ! !
Replies: 4
Views: 434

Try the ODE or the Newton tutorials in the tutorials page.
by juantar
Mon Aug 07, 2006 7:28 pm
Forum: Beginners Help
Topic: irrlicht 1.1 and linux
Replies: 6
Views: 425

irrlicht 1.1 and linux

I have knopix and the current NVIDIA drivers. Irrlicht 1.0 and OpenGL used to work fine for me, however when I switched to 1.1 I get the following error every time I try to run any example using OpenGL: Irrlicht Engine version 1.1 Linux Linux 2.6.12 #2 SMP Tue Aug 9 23:20:52 CEST 2005 No doublebuffe...
by juantar
Wed May 24, 2006 9:25 pm
Forum: Beginners Help
Topic: Including ODE to Irrlicht.
Replies: 3
Views: 474

Fixed it

Two things I did: I changed the code so that the mass structure of the object is initialized to 0 by using dMassSetZero (&_mass). Then I found that when I was setting the mass of the body I was using the wrong variable: dBodySetMass(_body,&mass); instead of dBodySetMass(_body,&_mass); It...
by juantar
Mon May 22, 2006 4:45 pm
Forum: Beginners Help
Topic: Code::Blocks and Irrlicht in Linux
Replies: 12
Views: 1609

Finally worked for Knoppix

For any new user wanting to compile it under Knoppix and Code blocks you must copy the libXxf86vm.so.1.0 library in the /usr/X11R6/lib/ and paste it there with the name libXxf86vm.so (without the 1.0). I did that and it worked for me (I hope this doesn't affect my system :D ).
by juantar
Wed Apr 26, 2006 12:45 am
Forum: Beginners Help
Topic: Is the newton tutorial outdated??
Replies: 1
Views: 279

Is the newton tutorial outdated??

I tried to compile and run the Newton tutorial from the tutorial's page. The problem was that I did not see a single cube and the clicking thing did not work. I was using Irrlicht 1.0 and Newton 1.52. What I did to "fix" my compiled program was to copy the Newton dll from the tutorial fold...