Let TS aircraft turn slower when circling.

This commit is contained in:
tovl
2020-06-21 21:46:02 +02:00
committed by reaperrr
parent 5e62fe86fc
commit db9744ea7f
2 changed files with 7 additions and 3 deletions

View File

@@ -56,7 +56,7 @@ namespace OpenRA.Mods.Common.Traits
[Desc("Turn speed to apply when aircraft flies in circles while idle. Defaults to TurnSpeed if undefined.")] [Desc("Turn speed to apply when aircraft flies in circles while idle. Defaults to TurnSpeed if undefined.")]
public readonly WAngle? IdleTurnSpeed = null; public readonly WAngle? IdleTurnSpeed = null;
[Desc("Maximum flight speed")] [Desc("Maximum flight speed when cruising.")]
public readonly int Speed = 1; public readonly int Speed = 1;
[Desc("If non-negative, force the aircraft to move in circles at this speed when idle (a speed of 0 means don't move), ignoring CanHover.")] [Desc("If non-negative, force the aircraft to move in circles at this speed when idle (a speed of 0 means don't move), ignoring CanHover.")]

View File

@@ -201,7 +201,9 @@ ORCAB:
Aircraft: Aircraft:
CruiseAltitude: 5c512 CruiseAltitude: 5c512
TurnSpeed: 12 TurnSpeed: 12
IdleTurnSpeed: 4
Speed: 96 Speed: 96
IdleSpeed: 72
CruisingCondition: cruising CruisingCondition: cruising
TakeoffSounds: orcaup1.aud TakeoffSounds: orcaup1.aud
LandingSounds: orcadwn1.aud LandingSounds: orcadwn1.aud
@@ -354,8 +356,10 @@ SCRIN:
VoiceSet: Scrin VoiceSet: Scrin
Aircraft: Aircraft:
CruiseAltitude: 5c0 CruiseAltitude: 5c0
TurnSpeed: 12 TurnSpeed: 15
Speed: 168 Speed: 200
IdleTurnSpeed: 6
IdleSpeed: 100
TakeoffSounds: dropup1.aud TakeoffSounds: dropup1.aud
LandingSounds: dropdwn1.aud LandingSounds: dropdwn1.aud
CanHover: false CanHover: false