I need a help :) shaiya's 3d models files typs are SMOD most of you know this. How can ı open these format in 3d modeling program for example blender ı couldn't find any information about SMOD. How can ı transoform this format to obj or fbx ?
[Only registered and activated users can see links. Click Here To Register...]Quote:
struct String {
long count; // number of character to follow
char *buffer;// array of characters
};
struct Strings {
long count; // number of String to follow
String* strings; // array of strings
};
struct Vertice {
float x, y, z;
float nx, ny, nz;
float unk;
float u, v;
};
struct Vertices {
long count;
Vertice* vertcs;
};
struct Face {
unsigned short i1, i2, i3;
};
struct Faces {
long count;
Face* facs;
};
struct FileSMOD {
long count;
Strings objects3D;
Vertices vertices;
Faces faces;
};