Hi,
Actually, i wants to read .X and Maya file using .NET.
If any one know, please send me the link of Irrlitch.Net.
Thank You
Needs source code
Check the samples of IrrlichtNetCP
This is the line code for loading a mesh:
You can load what you like,
download Wrapper 0.8.0
IrrlichtNetCP
This is the line code for loading a mesh:
You can load what you like,
Code: Select all
//non animate mesh
SceneNode katana = scene.AddMeshSceneNode(scene.GetMesh("katana.x").GetMesh(0), null, -1);
//a animated mesh
AnimatedMeshSceneNode dwarf = scene.AddAnimatedMeshSceneNode(scene.GetMesh("dwarf.x"));
IrrlichtNetCP