Fix turret facings for GTWR etc. Fixes #3610.

This commit is contained in:
Paul Chote
2013-08-03 11:47:25 +12:00
parent deb03e7a02
commit 03e09e25bb
7 changed files with 24 additions and 14 deletions

View File

@@ -191,9 +191,10 @@ namespace OpenRA.Traits
public interface IBodyOrientation
{
WAngle CameraPitch { get; }
int QuantizedFacings { get; set; }
int QuantizedFacings { get; }
WVec LocalToWorld(WVec vec);
WRot QuantizeOrientation(Actor self, WRot orientation);
void SetAutodetectedFacings(int facings);
}
public interface IBodyOrientationInfo {}