Search found 18 matches

by D.Cent
Mon May 10, 2010 2:40 pm
Forum: Code Snippets
Topic: New GUI skin [update: new skins, support for 1.5/1.6]
Replies: 112
Views: 73990

Which renderer do you use, manik_sheeri?
by D.Cent
Tue Mar 23, 2010 3:36 pm
Forum: Beginners Help
Topic: Linker Error
Replies: 3
Views: 420

I compile an Irrlicht program using bullet like this without any problems:

g++ -Wall -g -O3 *.o -o main -lIrrlicht -lGL -lXxf86vm -lXext -lX11 -lbulletdynamics -lbulletcollision -lbulletmath
by D.Cent
Mon Mar 22, 2010 4:45 pm
Forum: Beginners Help
Topic: XML writer doesn't write correctly
Replies: 0
Views: 578

XML writer doesn't write correctly

Ok, so this is a line I have in an XML-file. Reading it out doesn't cause any problems: <option type="3" name="resolution" values="640x480@24;1024x768@24;1280x720@24;1280x800@24;1280x1024@24;1920x1080@24;">1920x1080@24</option> The attribute "values" is used t...
by D.Cent
Sun Mar 21, 2010 2:17 pm
Forum: Beginners Help
Topic: How to make the checkbox tick white?
Replies: 3
Views: 294

Hm... it's still black :-/
by D.Cent
Sat Mar 20, 2010 3:16 pm
Forum: FAQs, Tutorials, Howtos, and external tool lists
Topic: ! THE VERY Advanced FontTool by N. Atanasov TTF2PNG + SOURCE
Replies: 46
Views: 35381

Would it be possible to release a Linux version?
by D.Cent
Sat Mar 20, 2010 3:10 pm
Forum: Beginners Help
Topic: How to make the checkbox tick white?
Replies: 3
Views: 294

How to make the checkbox tick white?

Hi,
I just made my own GUI skin and I'd like to make the checkbox tick white now - is there a possibility to do that? Has anyone got some example code?

Thanks in advance!
by D.Cent
Sun Mar 14, 2010 8:02 pm
Forum: Code Snippets
Topic: New GUI skin [update: new skins, support for 1.5/1.6]
Replies: 112
Views: 73990

Any idea how to make the checkbox tick white?

@Mammarock: Thank you very much, that helped a lot!
by D.Cent
Thu Apr 30, 2009 7:52 pm
Forum: Beginners Help
Topic: Problems with Rotation
Replies: 11
Views: 770

Ok, I did it like this: core::aabbox3d<f32> Box; // our bounding box for culling (portal rendering) for(u32 i=1; i<odfllevelmesh->getMeshBufferCount()-1; ++i) { IMeshBuffer* tmp_mesh = odfllevelmesh->getMeshBuffer(i); for(u32 count=1; count<tmp_mesh->getVertexCount(); ++count) { video::S3DVertex *ve...
by D.Cent
Sun Apr 26, 2009 8:39 am
Forum: Beginners Help
Topic: Problems with Rotation
Replies: 11
Views: 770

Well, I can not turn more than 90 degrees to the bottom or to the top. If I am looking straight to the bottom/top and continue pressing the key, then the camera stops rotating while making some strange moves (the screen begins jerking).

I do not use any bbox at all.
by D.Cent
Sat Apr 25, 2009 10:27 am
Forum: Beginners Help
Topic: Problems with Rotation
Replies: 11
Views: 770

I solved the problem with calling node->setAutomaticCulling(EAC_OFF).

But does it have any disadvantages to deactivate it?
by D.Cent
Sat Apr 25, 2009 9:54 am
Forum: Beginners Help
Topic: Problems with Rotation
Replies: 11
Views: 770

Ok, I fixed my problem now (I rewrote my whole code). I simply set the rotation like that: core::vector3df nodeRotation(camera->getRotation); ... // if left key pressed { nodeRotation.Y -= 1; camera->setRotation(nodeRotation); } I had to activate the "bindTargetAndRotation"-function. Now I...
by D.Cent
Tue Apr 21, 2009 3:08 pm
Forum: Beginners Help
Topic: Problems with Rotation
Replies: 11
Views: 770

Thanks for your answer!

I replaced the 3.14 with the define you gave me and I also applied your idea for the cos() / sin() functions, but again the same thing happens - nothing has changed :(
by D.Cent
Mon Apr 20, 2009 4:09 pm
Forum: Beginners Help
Topic: Problems with Rotation
Replies: 11
Views: 770

Problems with Rotation

Hi all, I wrote a program that displays a level in a special format. The loader I wrote for Irrlicht works correctly. When I started developing the Loader, I could only slide with my camera (left, right, up, down, forward, back). But now I also want to implement turning. This is what I wrote (some o...
by D.Cent
Mon May 14, 2007 5:35 pm
Forum: Beginners Help
Topic: Driver not for Linux?!?
Replies: 7
Views: 494

Thanks, now it works!!!! :D
by D.Cent
Mon May 14, 2007 2:28 pm
Forum: Beginners Help
Topic: Driver not for Linux?!?
Replies: 7
Views: 494

I don't know how to edit this line, or how to change the driver! :-/

I couldn't find something like OpenGL or Direct3D or DirectX in my code...

Just E_DRIVER_TYPE.

Please help me!!