Merge pull request #12129 from reaperrr/aircraft-ismoving

Change Aircraft.IsMoving to be true only when moving horizontally
This commit is contained in:
Paul Chote
2016-10-15 15:07:41 +01:00
committed by GitHub
4 changed files with 21 additions and 15 deletions

View File

@@ -308,6 +308,7 @@ namespace OpenRA.Traits
Activity VisualMove(Actor self, WPos fromPos, WPos toPos);
CPos NearestMoveableCell(CPos target);
bool IsMoving { get; set; }
bool IsMovingVertically { get; set; }
bool CanEnterTargetNow(Actor self, Target target);
}