mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-05-07 08:21:13 +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;
|
+ verts2[i].v[1] * blend;
|
||||||
vo->verts[i].vert[2] = verts1[i].v[2] * lerp
|
vo->verts[i].vert[2] = verts1[i].v[2] * lerp
|
||||||
+ verts2[i].v[2] * blend;
|
+ verts2[i].v[2] * blend;
|
||||||
//vo->verts[i].lightdot =
|
vo->verts[i].lightdot =
|
||||||
// shadedots[verts[i].lightnormalindex] * lerp
|
shadedots[verts1[i].lightnormalindex] * lerp
|
||||||
// + shadedots[verts2[i].lightnormalindex] * blend;
|
+ shadedots[verts2[i].lightnormalindex] * blend;
|
||||||
vo->verts[i].lightdot = shadedots[verts[i].lightnormalindex];
|
|
||||||
}
|
}
|
||||||
lastposenum0 = e->pose1;
|
lastposenum0 = e->pose1;
|
||||||
lastposenum = e->pose2;
|
lastposenum = e->pose2;
|
||||||
|
|
Loading…
Reference in a new issue