- 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:
Mitchell Richters 2021-08-22 10:55:01 +10:00
parent 7e8ec89a68
commit 2edbd3447c
1 changed files with 4 additions and 1 deletions

View File

@ -196,7 +196,10 @@ void qavBuildInterpProps(QAV* const pQAV)
qavInterpProps.Insert(pQAV->res_id, std::move(interp)); qavInterpProps.Insert(pQAV->res_id, std::move(interp));
for (int i = 6; i < pQAV->nFrames; i++) 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; break;
} }