Hi, I read the article on LOD-Levels in the manual. There, the author wrote that an entity called "house_0.mdl" expects "house_1.mdl", "house_2.mdl" and "house_3.mdl" as LOD files.
But since there are only three LOD-Level what is the fouth model for???
I created an example with "house_0...2.mdl" and it worked well... Can anybody explain that?
I use a very simple script to set lod distances in quants.
Code:
// lod settings - distances are given in quants, but should be given relatively to camera clip_far, in percentage, which can be different
var temp1 = map_lod1*100;
var temp2 = map_lod2*100;
var temp3 = map_lod3*100;
vec_set(d3d_lodfactor,vector( temp1/camera.clip_far , temp2/camera.clip_far , temp3/camera.clip_far ));