mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-21 09:51:41 +00:00
ah, found the correct fix :)
This commit is contained in:
parent
7ea46cf4ed
commit
0d82df96b0
1 changed files with 3 additions and 4 deletions
|
@ -529,10 +529,9 @@ GL_GetAliasFrameVerts (int frame, aliashdr_t *paliashdr, entity_t *e)
|
|||
+ verts2[i].v[1] * blend;
|
||||
vo->verts[i].vert[2] = verts1[i].v[2] * lerp
|
||||
+ verts2[i].v[2] * blend;
|
||||
//vo->verts[i].lightdot =
|
||||
// shadedots[verts[i].lightnormalindex] * lerp
|
||||
// + shadedots[verts2[i].lightnormalindex] * blend;
|
||||
vo->verts[i].lightdot = shadedots[verts[i].lightnormalindex];
|
||||
vo->verts[i].lightdot =
|
||||
shadedots[verts1[i].lightnormalindex] * lerp
|
||||
+ shadedots[verts2[i].lightnormalindex] * blend;
|
||||
}
|
||||
lastposenum0 = e->pose1;
|
||||
lastposenum = e->pose2;
|
||||
|
|
Loading…
Reference in a new issue