truly a community project, this has been kicking around since 2003 in various forms. adds a path following shape that can be ridden.

This commit is contained in:
AzaezelX 2020-01-11 23:58:30 -06:00
parent f007700646
commit f7f8faf47e
14 changed files with 1399 additions and 8 deletions

View file

@ -246,6 +246,14 @@ void StaticShape::processTick(const Move* move)
}
}
void StaticShape::interpolateTick(F32 delta)
{
Parent::interpolateTick(delta);
// PATHSHAPE
updateRenderChangesByParent();
// PATHSHAPE END
}
void StaticShape::setTransform(const MatrixF& mat)
{
Parent::setTransform(mat);