Add icons to the production tooltip.
This commit is contained in:
@@ -32,10 +32,15 @@ namespace OpenRA.Mods.RA.Widgets.Logic
|
|||||||
var hotkeyLabel = widget.Get<LabelWidget>("HOTKEY");
|
var hotkeyLabel = widget.Get<LabelWidget>("HOTKEY");
|
||||||
var requiresLabel = widget.Get<LabelWidget>("REQUIRES");
|
var requiresLabel = widget.Get<LabelWidget>("REQUIRES");
|
||||||
var powerLabel = widget.Get<LabelWidget>("POWER");
|
var powerLabel = widget.Get<LabelWidget>("POWER");
|
||||||
|
var powerIcon = widget.Get<ImageWidget>("POWER_ICON");
|
||||||
var timeLabel = widget.Get<LabelWidget>("TIME");
|
var timeLabel = widget.Get<LabelWidget>("TIME");
|
||||||
|
var timeIcon = widget.Get<ImageWidget>("TIME_ICON");
|
||||||
var costLabel = widget.Get<LabelWidget>("COST");
|
var costLabel = widget.Get<LabelWidget>("COST");
|
||||||
|
var costIcon = widget.Get<ImageWidget>("COST_ICON");
|
||||||
var descLabel = widget.Get<LabelWidget>("DESC");
|
var descLabel = widget.Get<LabelWidget>("DESC");
|
||||||
|
|
||||||
|
var iconMargin = timeIcon.Bounds.X;
|
||||||
|
|
||||||
var font = Game.Renderer.Fonts[nameLabel.Font];
|
var font = Game.Renderer.Fonts[nameLabel.Font];
|
||||||
var descFont = Game.Renderer.Fonts[descLabel.Font];
|
var descFont = Game.Renderer.Fonts[descLabel.Font];
|
||||||
var requiresFont = Game.Renderer.Fonts[requiresLabel.Font];
|
var requiresFont = Game.Renderer.Fonts[requiresLabel.Font];
|
||||||
@@ -68,20 +73,21 @@ namespace OpenRA.Mods.RA.Widgets.Logic
|
|||||||
requiresLabel.GetText = () => requiresString;
|
requiresLabel.GetText = () => requiresString;
|
||||||
|
|
||||||
var power = bi != null ? bi.Power : 0;
|
var power = bi != null ? bi.Power : 0;
|
||||||
var powerString = "P: {0}".F(power);
|
var powerString = power.ToString();
|
||||||
powerLabel.GetText = () => powerString;
|
powerLabel.GetText = () => powerString;
|
||||||
powerLabel.GetColor = () => ((pm.PowerProvided - pm.PowerDrained) >= -power || power > 0)
|
powerLabel.GetColor = () => ((pm.PowerProvided - pm.PowerDrained) >= -power || power > 0)
|
||||||
? Color.White : Color.Red;
|
? Color.White : Color.Red;
|
||||||
powerLabel.IsVisible = () => power != 0;
|
powerLabel.IsVisible = () => power != 0;
|
||||||
|
powerIcon.IsVisible = () => power != 0;
|
||||||
|
|
||||||
var lowpower = pm.PowerState != PowerState.Normal;
|
var lowpower = pm.PowerState != PowerState.Normal;
|
||||||
var time = palette.CurrentQueue == null ? 0 : palette.CurrentQueue.GetBuildTime(actor)
|
var time = palette.CurrentQueue == null ? 0 : palette.CurrentQueue.GetBuildTime(actor)
|
||||||
* (lowpower ? palette.CurrentQueue.Info.LowPowerSlowdown : 1);
|
* (lowpower ? palette.CurrentQueue.Info.LowPowerSlowdown : 1);
|
||||||
var timeString = "T: {0}".F(WidgetUtils.FormatTime(time));
|
var timeString = WidgetUtils.FormatTime(time);
|
||||||
timeLabel.GetText = () => timeString;
|
timeLabel.GetText = () => timeString;
|
||||||
timeLabel.GetColor = () => lowpower ? Color.Red : Color.White;
|
timeLabel.GetColor = () => lowpower ? Color.Red : Color.White;
|
||||||
|
|
||||||
var costString = "$: {0}".F(cost);
|
var costString = cost.ToString();
|
||||||
costLabel.GetText = () => costString;
|
costLabel.GetText = () => costString;
|
||||||
costLabel.GetColor = () => pr.DisplayCash + pr.DisplayResources >= cost
|
costLabel.GetColor = () => pr.DisplayCash + pr.DisplayResources >= cost
|
||||||
? Color.White : Color.Red;
|
? Color.White : Color.Red;
|
||||||
@@ -91,8 +97,10 @@ namespace OpenRA.Mods.RA.Widgets.Logic
|
|||||||
|
|
||||||
var leftWidth = new[] { nameWidth + hotkeyWidth, requiresFont.Measure(requiresString).X, descFont.Measure(descString).X }.Aggregate(Math.Max);
|
var leftWidth = new[] { nameWidth + hotkeyWidth, requiresFont.Measure(requiresString).X, descFont.Measure(descString).X }.Aggregate(Math.Max);
|
||||||
var rightWidth = new[] { font.Measure(powerString).X, font.Measure(timeString).X, font.Measure(costString).X }.Aggregate(Math.Max);
|
var rightWidth = new[] { font.Measure(powerString).X, font.Measure(timeString).X, font.Measure(costString).X }.Aggregate(Math.Max);
|
||||||
timeLabel.Bounds.X = powerLabel.Bounds.X = costLabel.Bounds.X = leftWidth + 2 * nameLabel.Bounds.X;
|
|
||||||
widget.Bounds.Width = leftWidth + rightWidth + 3 * nameLabel.Bounds.X;
|
timeIcon.Bounds.X = powerIcon.Bounds.X = costIcon.Bounds.X = leftWidth + 2 * nameLabel.Bounds.X;
|
||||||
|
timeLabel.Bounds.X = powerLabel.Bounds.X = costLabel.Bounds.X = timeIcon.Bounds.Right + iconMargin;
|
||||||
|
widget.Bounds.Width = leftWidth + rightWidth + 3 * nameLabel.Bounds.X + timeIcon.Bounds.Width + iconMargin;
|
||||||
|
|
||||||
var leftHeight = font.Measure(tooltip.Name).Y + requiresFont.Measure(requiresString).Y + descFont.Measure(descString).Y;
|
var leftHeight = font.Measure(tooltip.Name).Y + requiresFont.Measure(requiresString).Y + descFont.Measure(descString).Y;
|
||||||
var rightHeight = font.Measure(powerString).Y + font.Measure(timeString).Y + font.Measure(costString).Y;
|
var rightHeight = font.Measure(powerString).Y + font.Measure(timeString).Y + font.Measure(costString).Y;
|
||||||
|
|||||||
@@ -99,17 +99,17 @@
|
|||||||
borderopacity="1.0"
|
borderopacity="1.0"
|
||||||
inkscape:pageopacity="0.0"
|
inkscape:pageopacity="0.0"
|
||||||
inkscape:pageshadow="2"
|
inkscape:pageshadow="2"
|
||||||
inkscape:zoom="3.9999998"
|
inkscape:zoom="8"
|
||||||
inkscape:cx="444.36519"
|
inkscape:cx="468.95592"
|
||||||
inkscape:cy="396.49296"
|
inkscape:cy="426.49296"
|
||||||
inkscape:document-units="px"
|
inkscape:document-units="px"
|
||||||
inkscape:current-layer="layer1"
|
inkscape:current-layer="layer1"
|
||||||
showgrid="false"
|
showgrid="false"
|
||||||
inkscape:window-width="1381"
|
inkscape:window-width="1381"
|
||||||
inkscape:window-height="856"
|
inkscape:window-height="856"
|
||||||
inkscape:window-x="59"
|
inkscape:window-x="59"
|
||||||
inkscape:window-y="1042"
|
inkscape:window-y="0"
|
||||||
inkscape:window-maximized="1"
|
inkscape:window-maximized="0"
|
||||||
showguides="true"
|
showguides="true"
|
||||||
inkscape:guide-bbox="true">
|
inkscape:guide-bbox="true">
|
||||||
<sodipodi:guide
|
<sodipodi:guide
|
||||||
@@ -1527,7 +1527,7 @@
|
|||||||
sodipodi:cy="98.374992"
|
sodipodi:cy="98.374992"
|
||||||
sodipodi:rx="2.625"
|
sodipodi:rx="2.625"
|
||||||
sodipodi:ry="2.3749907"
|
sodipodi:ry="2.3749907"
|
||||||
d="m 507.25003,98.374992 a 2.625,2.3749907 0 1 1 -5.25,0 2.625,2.3749907 0 1 1 5.25,0 z"
|
d="m 507.25003,98.374992 c 0,1.311672 -1.17525,2.374988 -2.625,2.374988 -1.44975,0 -2.625,-1.063316 -2.625,-2.374988 0,-1.311671 1.17525,-2.37499 2.625,-2.37499 1.44975,0 2.625,1.063319 2.625,2.37499 z"
|
||||||
transform="matrix(1.5238095,0,0,1.6842171,-264.88993,475.67736)" />
|
transform="matrix(1.5238095,0,0,1.6842171,-264.88993,475.67736)" />
|
||||||
<path
|
<path
|
||||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||||
@@ -1537,7 +1537,7 @@
|
|||||||
sodipodi:nodetypes="sssccss" />
|
sodipodi:nodetypes="sssccss" />
|
||||||
<path
|
<path
|
||||||
transform="matrix(1.5238095,0,0,1.6842171,-264.88993,491.67736)"
|
transform="matrix(1.5238095,0,0,1.6842171,-264.88993,491.67736)"
|
||||||
d="m 507.25003,98.374992 a 2.625,2.3749907 0 1 1 -5.25,0 2.625,2.3749907 0 1 1 5.25,0 z"
|
d="m 507.25003,98.374992 c 0,1.311672 -1.17525,2.374988 -2.625,2.374988 -1.44975,0 -2.625,-1.063316 -2.625,-2.374988 0,-1.311671 1.17525,-2.37499 2.625,-2.37499 1.44975,0 2.625,1.063319 2.625,2.37499 z"
|
||||||
sodipodi:ry="2.3749907"
|
sodipodi:ry="2.3749907"
|
||||||
sodipodi:rx="2.625"
|
sodipodi:rx="2.625"
|
||||||
sodipodi:cy="98.374992"
|
sodipodi:cy="98.374992"
|
||||||
@@ -1559,7 +1559,7 @@
|
|||||||
sodipodi:cy="98.374992"
|
sodipodi:cy="98.374992"
|
||||||
sodipodi:rx="2.625"
|
sodipodi:rx="2.625"
|
||||||
sodipodi:ry="2.3749907"
|
sodipodi:ry="2.3749907"
|
||||||
d="m 507.25003,98.374992 a 2.625,2.3749907 0 1 1 -5.25,0 2.625,2.3749907 0 1 1 5.25,0 z"
|
d="m 507.25003,98.374992 c 0,1.311672 -1.17525,2.374988 -2.625,2.374988 -1.44975,0 -2.625,-1.063316 -2.625,-2.374988 0,-1.311671 1.17525,-2.37499 2.625,-2.37499 1.44975,0 2.625,1.063319 2.625,2.37499 z"
|
||||||
transform="matrix(1.5238095,0,0,1.6842171,-264.88993,507.67736)" />
|
transform="matrix(1.5238095,0,0,1.6842171,-264.88993,507.67736)" />
|
||||||
<path
|
<path
|
||||||
style="fill:#ffc000;fill-opacity:1;stroke:none"
|
style="fill:#ffc000;fill-opacity:1;stroke:none"
|
||||||
@@ -1567,6 +1567,48 @@
|
|||||||
id="path4038"
|
id="path4038"
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
sodipodi:nodetypes="sssccss" />
|
sodipodi:nodetypes="sssccss" />
|
||||||
|
<path
|
||||||
|
sodipodi:type="arc"
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:0.95312506;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||||
|
id="path3248"
|
||||||
|
sodipodi:cx="439.81253"
|
||||||
|
sodipodi:cy="88.562477"
|
||||||
|
sodipodi:rx="3.8125002"
|
||||||
|
sodipodi:ry="3.8125002"
|
||||||
|
d="m 443.62503,88.562477 a 3.8125002,3.8125002 0 1 1 -7.625,0 3.8125002,3.8125002 0 1 1 7.625,0 z"
|
||||||
|
transform="matrix(1.5737704,0,0,1.5737704,-252.16394,488.98519)" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||||
|
d="m 440.0416,625.02887 -0.0412,3.41667 2.87503,1.83333"
|
||||||
|
id="path4030"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccc" />
|
||||||
|
<flowRoot
|
||||||
|
xml:space="preserve"
|
||||||
|
id="flowRoot4039"
|
||||||
|
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:FreeSans;-inkscape-font-specification:FreeSans Bold"
|
||||||
|
transform="matrix(2.6246719,0,0,2.6246719,-764.958,391.85385)"><flowRegion
|
||||||
|
id="flowRegion4041"><rect
|
||||||
|
id="rect4043"
|
||||||
|
width="9.875"
|
||||||
|
height="10.375"
|
||||||
|
x="469.625"
|
||||||
|
y="86.625"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:1;font-family:FreeSans;-inkscape-font-specification:FreeSans Bold" /></flowRegion><flowPara
|
||||||
|
id="flowPara4045">$</flowPara></flowRoot> <g
|
||||||
|
id="g4047"
|
||||||
|
style="font-size:17.23077011px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||||
|
transform="matrix(0.87502461,0,0,0.87502461,29.205207,106.53043)">
|
||||||
|
<path
|
||||||
|
id="path4049"
|
||||||
|
d="m 492.54807,592.57371 c 0.11537,0.12822 0.13781,0.26924 0.0673,0.42308 l -5.19231,11.125 c -0.0833,0.16025 -0.21795,0.24038 -0.40385,0.24038 -0.0256,0 -0.0705,-0.006 -0.13461,-0.0192 -0.10898,-0.0321 -0.19231,-0.0929 -0.25,-0.18269 -0.0513,-0.0897 -0.0641,-0.1859 -0.0385,-0.28846 l 1.89424,-7.76923 -3.90385,0.97115 c -0.0256,0.006 -0.0641,0.01 -0.11539,0.01 -0.11538,0 -0.21474,-0.0353 -0.29807,-0.10577 -0.11539,-0.0962 -0.15705,-0.22115 -0.125,-0.375 l 1.93269,-7.9327 c 0.0256,-0.0897 0.0769,-0.16344 0.15385,-0.22115 0.0769,-0.0577 0.16666,-0.0865 0.26923,-0.0865 l 3.15384,0 c 0.12179,2e-5 0.22436,0.0417 0.3077,0.125 0.0833,0.0769 0.12499,0.16989 0.125,0.27885 -1e-5,0.0513 -0.016,0.10899 -0.0481,0.17308 l -1.64423,4.45192 3.80769,-0.94231 c 0.0513,-0.0128 0.0897,-0.0192 0.11538,-0.0192 0.12179,10e-6 0.23077,0.0481 0.32693,0.14423"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||||
|
d="m 492.54807,592.57371 c 0.11537,0.12822 0.13781,0.26924 0.0673,0.42308 l -5.19231,11.125 c -0.0833,0.16025 -0.21795,0.24038 -0.40385,0.24038 -0.0256,0 -0.0705,-0.006 -0.13461,-0.0192 -0.10898,-0.0321 -0.19231,-0.0929 -0.25,-0.18269 -0.0513,-0.0897 -0.0641,-0.1859 -0.0385,-0.28846 l 1.89424,-7.76923 -3.90385,0.97115 c -0.0256,0.006 -0.0641,0.01 -0.11539,0.01 -0.11538,0 -0.21474,-0.0353 -0.29807,-0.10577 -0.11539,-0.0962 -0.15705,-0.22115 -0.125,-0.375 l 1.93269,-7.9327 c 0.0256,-0.0897 0.0769,-0.16344 0.15385,-0.22115 0.0769,-0.0577 0.16666,-0.0865 0.26923,-0.0865 l 3.15384,0 c 0.12179,2e-5 0.22436,0.0417 0.3077,0.125 0.0833,0.0769 0.12499,0.16989 0.125,0.27885 -1e-5,0.0513 -0.016,0.10899 -0.0481,0.17308 l -1.64423,4.45192 3.80769,-0.94231 c 0.0513,-0.0128 0.0897,-0.0192 0.11538,-0.0192 0.12179,10e-6 0.23077,0.0481 0.32693,0.14423"
|
||||||
|
id="path4051"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<g
|
<g
|
||||||
inkscape:groupmode="layer"
|
inkscape:groupmode="layer"
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 104 KiB After Width: | Height: | Size: 108 KiB |
Binary file not shown.
@@ -429,6 +429,9 @@ strategic: strategic.png
|
|||||||
sidebar-bits: chrome.png
|
sidebar-bits: chrome.png
|
||||||
indicator-left: 416,48,16,8
|
indicator-left: 416,48,16,8
|
||||||
indicator-right: 416,56,16,8
|
indicator-right: 416,56,16,8
|
||||||
|
production-tooltip-time: 432, 80, 16, 16
|
||||||
|
production-tooltip-power: 448, 80, 16, 16
|
||||||
|
production-tooltip-cost: 464, 80, 16, 16
|
||||||
|
|
||||||
production-icons: chrome.png
|
production-icons: chrome.png
|
||||||
building: 384,0,16,16
|
building: 384,0,16,16
|
||||||
|
|||||||
@@ -73,21 +73,33 @@ Background@PRODUCTION_TOOLTIP:
|
|||||||
Height: 23
|
Height: 23
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
VAlign: Top
|
VAlign: Top
|
||||||
|
Image@COST_ICON:
|
||||||
|
Y: 5
|
||||||
|
Width: 16
|
||||||
|
ImageCollection: sidebar-bits
|
||||||
|
ImageName: production-tooltip-cost
|
||||||
Label@COST:
|
Label@COST:
|
||||||
Height: 23
|
Height: 23
|
||||||
Font: Bold
|
Font: Bold
|
||||||
|
Image@TIME_ICON:
|
||||||
|
X: 3
|
||||||
|
Y: 24
|
||||||
|
Width: 16
|
||||||
|
ImageCollection: sidebar-bits
|
||||||
|
ImageName: production-tooltip-time
|
||||||
Label@TIME:
|
Label@TIME:
|
||||||
Y: 19
|
Y: 19
|
||||||
Height: 23
|
Height: 23
|
||||||
Font: Bold
|
Font: Bold
|
||||||
|
Image@POWER_ICON:
|
||||||
|
Y: 44
|
||||||
|
Width: 16
|
||||||
|
ImageCollection: sidebar-bits
|
||||||
|
ImageName: production-tooltip-power
|
||||||
Label@POWER:
|
Label@POWER:
|
||||||
Y: 39
|
Y: 39
|
||||||
Height: 23
|
Height: 23
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Label@TIME:
|
|
||||||
Y: 39
|
|
||||||
Height: 23
|
|
||||||
Font: Bold
|
|
||||||
|
|
||||||
Background@SUPPORT_POWER_TOOLTIP:
|
Background@SUPPORT_POWER_TOOLTIP:
|
||||||
Logic: SupportPowerTooltipLogic
|
Logic: SupportPowerTooltipLogic
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 78 KiB |
@@ -2,7 +2,6 @@ sidebar-allies: chrome.png
|
|||||||
background-top: 0,167,238,290
|
background-top: 0,167,238,290
|
||||||
background-iconrow: 0,457,238,47
|
background-iconrow: 0,457,238,47
|
||||||
background-bottom: 0,504,238,8
|
background-bottom: 0,504,238,8
|
||||||
background-iconoverlay: 314,118,238,48
|
|
||||||
background-supportoverlay: 184,118,64,48
|
background-supportoverlay: 184,118,64,48
|
||||||
|
|
||||||
sidebar-button-allies: chrome.png
|
sidebar-button-allies: chrome.png
|
||||||
@@ -26,7 +25,6 @@ sidebar-soviet: chrome.png
|
|||||||
background-top: 274,167,238,290
|
background-top: 274,167,238,290
|
||||||
background-iconrow: 274,457,238,47
|
background-iconrow: 274,457,238,47
|
||||||
background-bottom: 274,504,238,8
|
background-bottom: 274,504,238,8
|
||||||
background-iconoverlay: 314,118,238,48
|
|
||||||
background-supportoverlay: 249,118,64,48
|
background-supportoverlay: 249,118,64,48
|
||||||
|
|
||||||
sidebar-button-soviet: chrome.png
|
sidebar-button-soviet: chrome.png
|
||||||
@@ -46,6 +44,12 @@ sidebar-button-soviet-disabled: chrome.png
|
|||||||
sidebar-button-soviet-highlighted-disabled: chrome.png
|
sidebar-button-soviet-highlighted-disabled: chrome.png
|
||||||
background: 112,0,28,28
|
background: 112,0,28,28
|
||||||
|
|
||||||
|
sidebar-bits: chrome.png
|
||||||
|
production-tooltip-time: 416, 80, 16, 16
|
||||||
|
production-tooltip-power: 432, 80, 16, 16
|
||||||
|
production-tooltip-cost: 448, 80, 16, 16
|
||||||
|
production-iconoverlay: 314,118,238,48
|
||||||
|
|
||||||
production-icons: chrome.png
|
production-icons: chrome.png
|
||||||
building: 384,0,16,16
|
building: 384,0,16,16
|
||||||
building-disabled: 384,16,16,16
|
building-disabled: 384,16,16,16
|
||||||
|
|||||||
@@ -243,8 +243,8 @@ Container@PLAYER_WIDGETS:
|
|||||||
Width: 238
|
Width: 238
|
||||||
Height: 47
|
Height: 47
|
||||||
IgnoreMouseOver: true
|
IgnoreMouseOver: true
|
||||||
ImageCollection: sidebar-soviet
|
ImageCollection: sidebar-bits
|
||||||
ImageName: background-iconoverlay
|
ImageName: production-iconoverlay
|
||||||
Container@PRODUCTION_TYPES:
|
Container@PRODUCTION_TYPES:
|
||||||
X: 7
|
X: 7
|
||||||
Y: 2
|
Y: 2
|
||||||
|
|||||||
@@ -137,21 +137,33 @@ Background@PRODUCTION_TOOLTIP:
|
|||||||
Height: 23
|
Height: 23
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
VAlign: Top
|
VAlign: Top
|
||||||
|
Image@COST_ICON:
|
||||||
|
Y: 5
|
||||||
|
Width: 16
|
||||||
|
ImageCollection: sidebar-bits
|
||||||
|
ImageName: production-tooltip-cost
|
||||||
Label@COST:
|
Label@COST:
|
||||||
Height: 23
|
Height: 23
|
||||||
Font: Bold
|
Font: Bold
|
||||||
|
Image@TIME_ICON:
|
||||||
|
X: 3
|
||||||
|
Y: 26
|
||||||
|
Width: 16
|
||||||
|
ImageCollection: sidebar-bits
|
||||||
|
ImageName: production-tooltip-time
|
||||||
Label@TIME:
|
Label@TIME:
|
||||||
Y: 21
|
Y: 21
|
||||||
Height: 23
|
Height: 23
|
||||||
Font: Bold
|
Font: Bold
|
||||||
|
Image@POWER_ICON:
|
||||||
|
Y: 46
|
||||||
|
Width: 16
|
||||||
|
ImageCollection: sidebar-bits
|
||||||
|
ImageName: production-tooltip-power
|
||||||
Label@POWER:
|
Label@POWER:
|
||||||
Y: 41
|
Y: 41
|
||||||
Height: 23
|
Height: 23
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Label@TIME:
|
|
||||||
Y: 41
|
|
||||||
Height: 23
|
|
||||||
Font: Bold
|
|
||||||
|
|
||||||
Background@SUPPORT_POWER_TOOLTIP:
|
Background@SUPPORT_POWER_TOOLTIP:
|
||||||
Logic: SupportPowerTooltipLogic
|
Logic: SupportPowerTooltipLogic
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 106 KiB After Width: | Height: | Size: 107 KiB |
Reference in New Issue
Block a user