Started implementing pause/stop behaviors

This commit is contained in:
Emma Broman
2020-04-08 16:27:10 +02:00
parent 9d10abcff3
commit a9005cdcbb
11 changed files with 254 additions and 62 deletions
-3
View File
@@ -143,9 +143,6 @@ void PathSegment::initCurve() {
case CurveType::Linear:
_curve = std::make_shared<LinearCurve>(_start, _end);
break;
case CurveType::Pause:
_curve = std::make_shared<PauseCurve>(_start);
break;
default:
LERROR("Could not create curve. Type does not exist!");
return;