mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 14:52:01 +00:00
- Blood: Extend interpolation properties for kQAVBUNFUSE
(res_id: 21) to stop interpolating all tiles after frame 6 and not just tile index 4.
This commit is contained in:
parent
7e8ec89a68
commit
2edbd3447c
1 changed files with 4 additions and 1 deletions
|
@ -196,7 +196,10 @@ void qavBuildInterpProps(QAV* const pQAV)
|
|||
qavInterpProps.Insert(pQAV->res_id, std::move(interp));
|
||||
for (int i = 6; i < pQAV->nFrames; i++)
|
||||
{
|
||||
qavSetNonInterpFrameTile(pQAV->res_id, i, 4);
|
||||
for (int j = 0; j < 7; j++)
|
||||
{
|
||||
qavSetNonInterpFrameTile(pQAV->res_id, i, j);
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue