支持先手动设置部分虚拟ID后再自动编号
This commit is contained in:
parent
9133800b62
commit
59672e4f5e
@ -164,6 +164,16 @@ namespace Plane.FormationCreator.ViewModels
|
||||
}
|
||||
else
|
||||
{
|
||||
ICopter tempCopter = null;
|
||||
tempCopter = _copterManager.Copters.FirstOrDefault(o => o.VirtualId == num);
|
||||
while (tempCopter != null)
|
||||
{
|
||||
num++;
|
||||
j++;
|
||||
tempCopter = _copterManager.Copters.FirstOrDefault(o => o.VirtualId == num);
|
||||
}
|
||||
|
||||
|
||||
destCopter = FindNextCopter(destCopter, curRowAzimuth);
|
||||
|
||||
if (destCopter == null)
|
||||
|
Loading…
Reference in New Issue
Block a user