Meshviewer avec un .x de Deled 3D

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
GuyTina
Posts: 108
Joined: Fri Nov 12, 2004 11:09 am
Location: FRANCE

Meshviewer avec un .x de Deled 3D

Post by GuyTina »

Bonjour tout le Monde.

Le Mesviewer d'Irrlicht fonctionne tres bien avec dwarf.x.

Mais il ne fonctionne pas avec un .x de Deled???

Avec le Mesh Viewer du SDK de Directx 9b le fichier .x de Deled 3D fonctionne tres bien???


Merci d'avance

Cordialement :D
jikbar
Posts: 62
Joined: Wed Aug 25, 2004 4:48 pm
Location: Canada
Contact:

Post by jikbar »

DeleD exports .x files with material references which dont work in Irrlicht

DeleD export des fichier .x avec des references de materiaux qui ne fonctionne pas dans Irrlicht

ex:
//after the header
material SomeMat{
1 1 1; //diffuse color
1 1 1; //specular color
}
...
//in the mesh material section/dans la section du mesh qui contient les materiaux
(SomeMat)

this should be changed to/ceci devrai étre changer à

//no materials declared after the header
...
//in the mesh materials section
material SomeMat{
1 1 1;
1 1 1;
}

it can be changed in any text editing program or you could resave it from DX meshviewer, which works with all versions of the .x format

ceci peut étre changer dans une programme de traitement de texte ou ça peut étre resauver dans DX meshviewer, qui fonctionne avec toute les versions du format .x
GuyTina
Posts: 108
Joined: Fri Nov 12, 2004 11:09 am
Location: FRANCE

Remerciements

Post by GuyTina »

Bonjour tout le Monde.

Je te remercie beaucoup pour tes réponses.

Cordialement.
:D
Post Reply