Change defaults for the production palette's ready sign

Default is now to blink alternating between white and gold.
This commit is contained in:
Oliver Brakmann
2014-07-09 11:47:33 +02:00
parent a816956b5e
commit ab4a9388ce

View File

@@ -25,8 +25,8 @@ namespace OpenRA.Mods.RA.Widgets
class BuildPaletteWidget : Widget
{
public enum ReadyTextStyleOptions { Solid, AlternatingColor, Blinking }
public readonly ReadyTextStyleOptions ReadyTextStyle = ReadyTextStyleOptions.Blinking;
public readonly Color ReadyTextAltColor = Color.LimeGreen;
public readonly ReadyTextStyleOptions ReadyTextStyle = ReadyTextStyleOptions.AlternatingColor;
public readonly Color ReadyTextAltColor = Color.Gold;
public int Columns = 3;
public int Rows = 5;