Bugfix, IRC, textures or displacement on metaballs didnt work.

Commit 32361 from Campbell made quite a silly optimize mistake...

ver->orco= orco+=3;

Which is of course not:

ver->orco= orco; orco+=3;

Triple tsk!
This commit is contained in:
2010-12-22 14:43:24 +00:00
parent eeac25c9d0
commit 51a7995269

View File

@@ -2380,7 +2380,10 @@ static void init_render_mball(Render *re, ObjectRen *obr)
normalize_v3(ver->n);
//if(ob->transflag & OB_NEG_SCALE) negate_v3(ver->n);
if(need_orco) ver->orco= orco+=3;
if(need_orco) {
ver->orco= orco;
orco+=3;
}
}
index= dl->index;