Search found 8 matches

by Yusaku
Mon Mar 31, 2008 2:17 pm
Forum: Advanced Help
Topic: Texture problem for my 3D format loader
Replies: 1
Views: 231

Texture problem for my 3D format loader

I grabbed the code from MS3D file loader and tried to create my own format loader (It's from my 3Dmax export plugin, but since it's working fine in my file viewer, I'm quite sure it's not the problem of the file). When I render this model in Irrlicht, the polygons are fine, but it's always black... ...
by Yusaku
Tue Oct 23, 2007 11:14 am
Forum: Everything 2d/3d Graphics
Topic: pivot problem?
Replies: 2
Views: 1443

well, i got the same problem like you... it seems like the problem of panda exporter. If anyone find a solution for this, please tell...

by the way, finally, we used lightwave to make the model and have not problem at all
by Yusaku
Tue Oct 23, 2007 6:01 am
Forum: Bug reports
Topic: A GUI Bug for CGUIImage?
Replies: 2
Views: 426

My version no. is 1.3... I'll get newest version from SVN later, thx!
by Yusaku
Mon Oct 22, 2007 2:10 pm
Forum: Bug reports
Topic: A GUI Bug for CGUIImage?
Replies: 2
Views: 426

A GUI Bug for CGUIImage?

I added 2 images and several controls like buttons or scroll bars to my program, and found after a couple of operations, the program will never response to any GUI events. Finally, I found the problem in CGUIEnvironment::postEventFromUser and the value "Focus" is one of my images. Since CG...
by Yusaku
Sat Jun 16, 2007 3:24 am
Forum: Beginners Help
Topic: Any suggestion for my XML configure file?
Replies: 5
Views: 380

Thx guys! Since I should finished the other parts of my program, just leave configure problem at this stage... anyway, thx for all ur suggestions! I'm thinking... probably it's not a good idea to tightly integrate everything in the core of engine? (like this case, we need a "device" to rea...
by Yusaku
Wed Jun 13, 2007 1:42 pm
Forum: Beginners Help
Topic: Any suggestion for my XML configure file?
Replies: 5
Views: 380

Any suggestion for my XML configure file?

I began to use Irrlicht for my game and tried to use XML as my config file (which contains window width, height info), however, I found it seems like only AFTER we create a device, we could use "createXMLReader". So my problem is: without window width and height info from XML file, I can't...
by Yusaku
Sun Jun 10, 2007 10:43 am
Forum: Beginners Help
Topic: An X file problem
Replies: 1
Views: 104

The problem is sloved - it's because I enabled "include animation" when exporting x file.

When the program performed "updateBoundingBoxFromAnimation", it used empty matrixes for bounding box, so I got (0,0,0) and (0,0,0) for min and max bounding box. :oops:
by Yusaku
Sun Jun 10, 2007 6:08 am
Forum: Beginners Help
Topic: An X file problem
Replies: 1
Views: 104

An X file problem

I create a terrain (200 x 200 units) in 3DMax and exported to an X file. When I loaded it to my game, I found the terrain sometimes disappeared. In CSceneManager.cpp, I found the terrain(or call sceneNode) was culled and it's because Box attribute (core::aabbox3df) is not set - it always return (0,0...