UnitInfo.Selectable

This commit is contained in:
Chris Forbes
2009-12-03 19:24:35 +13:00
parent cf54a47b0c
commit 5c923c8496
4 changed files with 28 additions and 23 deletions

View File

@@ -276,6 +276,7 @@ namespace OpenRa.Game
public static IEnumerable<Actor> SelectActorsInBox(float2 a, float2 b)
{
return FindUnits(a, b)
.Where( x => x.unitInfo.Selectable )
.GroupBy(x => (x.Owner == LocalPlayer) ? x.unitInfo.SelectionPriority : 0)
.OrderByDescending(g => g.Key)
.Select( g => g.AsEnumerable() )