Make MP start units facing customizable

There might be modders or mappers who prefer different initial facing settings than the hardcoded ones.
This commit is contained in:
reaperrr
2016-11-27 18:40:25 +01:00
parent c45c51f95d
commit 5a8df27096
2 changed files with 8 additions and 2 deletions

View File

@@ -37,6 +37,12 @@ namespace OpenRA.Mods.Common.Traits
[Desc("Outer radius for spawning support actors")]
public readonly int OuterSupportRadius = 4;
[Desc("Initial facing of BaseActor. -1 means random.")]
public readonly int BaseActorFacing = 128;
[Desc("Initial facing of SupportActors. -1 means random.")]
public readonly int SupportActorsFacing = -1;
}
public class MPStartUnits { }