起飞,降落都到20米高

This commit is contained in:
pxzleo 2017-09-22 01:44:38 +08:00
parent bc9c48b676
commit e770082c28
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ namespace Plane.FormationCreator.Formation
{
public partial class FlightTask
{
private float _RTLAlt = 15.0f;
private float _RTLAlt = 20.0f;// 15.0f;
public float RTLAlt
{
get { return _RTLAlt; }

View File

@ -227,7 +227,7 @@ namespace Plane.FormationCreator.Formation
//执行第二第三阶段起飞任务-------------使用中
private async Task TakeOffSecondTaskAsync(FlightTaskSingleCopterInfo info)
{
float takeOffAlt = 15;
float takeOffAlt = 20;
int copterIndex = SingleCopterInfos.IndexOf(info);
var copterNextTask = _flightTaskManager.Tasks[1].SingleCopterInfos[copterIndex];