Add Spline Collider

This commit is contained in:
Wojtek Figat
2021-02-11 16:47:43 +01:00
parent 6c253ce892
commit 49758fbfff
5 changed files with 410 additions and 6 deletions

View File

@@ -10,6 +10,11 @@ Spline::Spline(const SpawnParams& params)
{
}
bool Spline::GetIsLoop() const
{
return _loop;
}
void Spline::SetIsLoop(bool value)
{
if (_loop != value)