Hi everyone, i made a model in Blender and exported in .obj (wavefront) then i used Noesis to convert it to mdl. In level editor (Trenchbroom) and in Darkplaces the model is shown correctly but in FTEQW is not.
Here the model itself
https://www.dropbox.com/s/5rktrtii26cx2a9/cube.mdl?dl=0
Here is the entity qc code
void() misc_cube =
{
self.solid = SOLID_BBOX;
self.movetype = MOVETYPE_NONE;
precache_model ("progs/cube.mdl");
setmodel (self, "progs/cube.mdl");
};
Sorry for my bad English, it's not my native language
Here the model itself
https://www.dropbox.com/s/5rktrtii26cx2a9/cube.mdl?dl=0
Here is the entity qc code
void() misc_cube =
{
self.solid = SOLID_BBOX;
self.movetype = MOVETYPE_NONE;
precache_model ("progs/cube.mdl");
setmodel (self, "progs/cube.mdl");
};
Sorry for my bad English, it's not my native language

Comment