- previewrender with mapping type "Cube" didnt show correctly.

added fake 'face normal' for this case
This commit is contained in:
Ton Roosendaal 2004-01-05 21:18:47 +00:00
parent 1170f5f6ed
commit cea53c6473

@ -544,9 +544,12 @@ static int cubemap_glob(MTex *mtex, VlakRen *vlr, float x, float y, float z, flo
float x1, y1, z1, nor[3];
int ret;
if(vlr==NULL) return 0;
if(vlr==NULL) {
nor[0]= 0.0; nor[1]= 0.0; nor[2]= 1.0;
}
else {
VECCOPY(nor, vlr->n);
}
MTC_Mat4Mul3Vecfl(R.viewinv, nor);
x1= fabs(nor[0]);