Reorder default path type property, so the most useful ones comes first

OBS! Breaking change for the installations that uses paths, as the option property uses the indices in the list to set the value
This commit is contained in:
Emma Broman
2022-02-27 20:52:38 +01:00
parent 6e751585b0
commit aeeeea7793

View File

@@ -116,8 +116,8 @@ PathNavigator::PathNavigator()
{
_defaultPathType.addOptions({
{ Path::Type::AvoidCollision, "AvoidCollision" },
{ Path::Type::Linear, "Linear" },
{ Path::Type::ZoomOutOverview, "ZoomOutOverview"},
{ Path::Type::Linear, "Linear" },
{ Path::Type::AvoidCollisionWithLookAt, "AvoidCollisionWithLookAt"}
});
addProperty(_defaultPathType);