- Blood: Add interpolation properties for kQAVTOMFIRE (res_id: 66).

This commit is contained in:
Mitchell Richters 2021-08-22 07:33:46 +10:00
parent 3cd868c9f9
commit 6998772487

View file

@ -202,6 +202,18 @@ void qavBuildInterpProps(QAV* const pQAV)
qavInterpProps.Insert(pQAV->res_id, std::move(interp));
break;
}
case kQAVTOMFIRE:
{
QAVInterpProps interp{};
interp.flags |= true << kQAVIsLoopable;
interp.PrevTileFinder = qavGetInterpType("interpolate-index");
qavInterpProps.Insert(pQAV->res_id, std::move(interp));
for (int i = 0; i < pQAV->nFrames; i++)
{
qavSetNonInterpFrameTile(pQAV->res_id, i, 0);
}
break;
}
default:
{
QAVInterpProps interp{};