Search found 3 matches

by jyon
Thu Mar 31, 2005 4:28 am
Forum: Beginners Help
Topic: Lighting problem using getXJointNode addon by Electron
Replies: 16
Views: 1994

nope I don't get any strange moves when I animate.

and yes I do animation on the body model. the hair part is just attached to the bone in the body part.

ttom what is your problem ? can you put some screenshot or something that I could look at ?

jyon

btw I don't speak english well either :)
by jyon
Thu Mar 31, 2005 4:21 am
Forum: Beginners Help
Topic: Loading XML and createDevice
Replies: 6
Views: 466

I wouldn't say its the right way, but its how you do it with Irrlicht's XML reader.

but I thought the question was "how you get the XML reader working"

all I meant was don't closeDevice() a device just drop() it
and createDevice() a device again with the info you loaded in XML config file.
then ...
by jyon
Thu Mar 31, 2005 12:32 am
Forum: Beginners Help
Topic: Loading XML and createDevice
Replies: 6
Views: 466

well what I do is like this :
Device = createDevice(video::EDT_NULL);
FileManager = Device->getFileManager();
LoadConfig(); // do the xml stuff here
Device->drop(); // drop NULL device
Device = createDevice(deviceType,windowSize,bits,fullscreen,stensilbuffer,vsync);
// do what you wanna do here ...