Search found 7 matches

by raymond
Sun Dec 23, 2007 1:52 pm
Forum: Project Announcements
Topic: Tumle v1.4 irrlicht/newton
Replies: 80
Views: 27636

After search the forum I find that's caused by different vertex type. You need to check the vertex type and convert the pointer like this: if(mb->getVertexType() == EVT_STANDARD){ S3DVertex* mb_vertices = (S3DVertex*)mb->getVertices(); // create collision tree }else{ S3DVertex2TCoords* mb_vertices =...
by raymond
Sun Dec 23, 2007 12:54 pm
Forum: Project Announcements
Topic: Tumle v1.4 irrlicht/newton
Replies: 80
Views: 27636

raymond, are you sure that the file is loaded? usually when an error occurs, its in the few lines before that governed the line itself... i'm just guessing here. if your getting a runtime error, your file probably isn't loading. IN could of course use a little checking at that point, but nothing hu...
by raymond
Sun Dec 23, 2007 2:52 am
Forum: Project Announcements
Topic: Tumle v1.4 irrlicht/newton
Replies: 80
Views: 27636

The example runs perfectly on my computer. But when I am trying to use addPhysicsLevelNode to load a level of my own, a error occur. scene::IAnimatedMesh* levelMesh = smgr->getMesh("../../media/room.3ds"); ISceneNode* levelNode = smgr->addOctTreeSceneNode(levelMesh->getMesh(0), 0, -1, 128)...
by raymond
Tue Dec 18, 2007 10:34 am
Forum: Advanced Help
Topic: Language support needed.
Replies: 2
Views: 267

Language support needed.

I want to make the Irrlicht gui to support Chinese. Seems Irrlicht doesn't support Chinese language itself. I only found a patch called IrrTT but it's too old and all its document is written in Japanese. Is there anything make this possible? Or what do I need to do if I wanna modify Irrlicht to do t...
by raymond
Mon Dec 17, 2007 3:50 am
Forum: Beginners Help
Topic: question about level creation
Replies: 7
Views: 509

Thanks for all your help. I will try playing around IrrEdit.
by raymond
Fri Dec 14, 2007 12:37 pm
Forum: Beginners Help
Topic: question about level creation
Replies: 7
Views: 509

Re: question about level creation

rogerborg wrote: Have you tried using IrrEdit? This might help you to do what you want.
I just downloaded and get little confused, I can not even find a manual of IrrEdit.:shock: How do you guys start learning irrEdit?
by raymond
Thu Dec 13, 2007 2:53 pm
Forum: Beginners Help
Topic: question about level creation
Replies: 7
Views: 509

question about level creation

I am now using blender and can simply create some mesh as a level and draw it in irrlicht. But now I wanna do more: <1> I want create different kind of cpp object for different object in the mesh, how to do this? I just need a away to store information in the blender and get it in my program. <2> Ho...