mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
Update entity origin and angles even when invisible.
This fixes the broken intermissions. There might be a better fix, but this will do for now because the one alternative solution (getting V_CalcIntermissionRefdef to poke directly at entity states) is not something I particularly want to do.
This commit is contained in:
parent
372defc1be
commit
ec94a1e459
1 changed files with 8 additions and 1 deletions
|
@ -292,6 +292,7 @@ CL_RelinkEntities (void)
|
|||
entity_state_t *new, *old;
|
||||
float bobjrotate, frac, f, d;
|
||||
int i, j;
|
||||
int entvalid;
|
||||
vec3_t delta;
|
||||
|
||||
r_data->player_entity = &cl_entities[cl.viewentity];
|
||||
|
@ -324,7 +325,13 @@ CL_RelinkEntities (void)
|
|||
old = &nq_entstates.frame[1 - cl.mindex][i];
|
||||
ent = &cl_entities[i];
|
||||
// if the object wasn't included in the last packet, remove it
|
||||
if (cl_msgtime[i] != cl.mtime[0] || !new->modelindex) {
|
||||
entvalid = cl_msgtime[i] == cl.mtime[0];
|
||||
if (entvalid && !new->modelindex) {
|
||||
VectorCopy (new->origin, ent->origin);
|
||||
VectorCopy (new->angles, ent->angles);
|
||||
entvalid = 0;
|
||||
}
|
||||
if (!entvalid) {
|
||||
ent->model = NULL;
|
||||
ent->pose1 = ent->pose2 = -1;
|
||||
if (ent->efrag)
|
||||
|
|
Loading…
Reference in a new issue