Avoid Fluent syntax for highlighted text.
This commit is contained in:
committed by
Gustas
parent
de9a5eb71e
commit
2a223363b8
@@ -418,7 +418,7 @@ namespace OpenRA
|
|||||||
var clean = dirty;
|
var clean = dirty;
|
||||||
|
|
||||||
// reserved characters for MiniYAML and JSON
|
// reserved characters for MiniYAML and JSON
|
||||||
var disallowedChars = new char[] { '#', '@', ':', '\n', '\t', '[', ']', '{', '}', '"', '`' };
|
var disallowedChars = new char[] { '#', '@', ':', '\n', '\t', '[', ']', '{', '}', '<', '>', '"', '`' };
|
||||||
foreach (var disallowedChar in disallowedChars)
|
foreach (var disallowedChar in disallowedChars)
|
||||||
clean = clean.Replace(disallowedChar.ToString(), string.Empty);
|
clean = clean.Replace(disallowedChar.ToString(), string.Empty);
|
||||||
|
|
||||||
|
|||||||
@@ -45,8 +45,8 @@ namespace OpenRA.Mods.Common.Widgets
|
|||||||
|
|
||||||
while (line.Length > 0)
|
while (line.Length > 0)
|
||||||
{
|
{
|
||||||
var highlightStart = line.IndexOf('{');
|
var highlightStart = line.IndexOf('<');
|
||||||
var highlightEnd = line.IndexOf('}', 0);
|
var highlightEnd = line.IndexOf('>', 0);
|
||||||
|
|
||||||
if (highlightStart > 0 && highlightEnd > highlightStart)
|
if (highlightStart > 0 && highlightEnd > highlightStart)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1246,7 +1246,7 @@ Container@PLAYER_WIDGETS:
|
|||||||
Key: AttackMove
|
Key: AttackMove
|
||||||
DisableKeySound: true
|
DisableKeySound: true
|
||||||
TooltipText: Attack Move
|
TooltipText: Attack Move
|
||||||
TooltipDesc: Selected units will move to the desired location\nand attack any enemies they encounter en route.\n\nHold {(Ctrl)} while targeting to order an Assault Move\nthat attacks any units or structures encountered en route.\n\nLeft-click icon then right-click on target location.
|
TooltipDesc: Selected units will move to the desired location\nand attack any enemies they encounter en route.\n\nHold <(Ctrl)> while targeting to order an Assault Move\nthat attacks any units or structures encountered en route.\n\nLeft-click icon then right-click on target location.
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP_FACTIONSUFFIX
|
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP_FACTIONSUFFIX
|
||||||
Children:
|
Children:
|
||||||
@@ -1270,7 +1270,7 @@ Container@PLAYER_WIDGETS:
|
|||||||
Background: chrome-button-background
|
Background: chrome-button-background
|
||||||
DisableKeySound: true
|
DisableKeySound: true
|
||||||
TooltipText: Force Move
|
TooltipText: Force Move
|
||||||
TooltipDesc: Selected units will move to the desired location\n - Default activity for the target is suppressed\n - Vehicles will attempt to crush enemies at the target location\n - Helicopters will land at the target location\n\nLeft-click icon then right-click on target.\nHold {(Alt)} to activate temporarily while commanding units.
|
TooltipDesc: Selected units will move to the desired location\n - Default activity for the target is suppressed\n - Vehicles will attempt to crush enemies at the target location\n - Helicopters will land at the target location\n\nLeft-click icon then right-click on target.\nHold <(Alt)> to activate temporarily while commanding units.
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP_FACTIONSUFFIX
|
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP_FACTIONSUFFIX
|
||||||
Children:
|
Children:
|
||||||
@@ -1294,7 +1294,7 @@ Container@PLAYER_WIDGETS:
|
|||||||
Background: chrome-button-background
|
Background: chrome-button-background
|
||||||
DisableKeySound: true
|
DisableKeySound: true
|
||||||
TooltipText: Force Attack
|
TooltipText: Force Attack
|
||||||
TooltipDesc: Selected units will attack the targeted unit or location\n - Default activity for the target is suppressed\n - Allows targeting of own or ally forces\n - Long-range artillery units will always target the\n location, ignoring units and buildings\n\nLeft-click icon then right-click on target.\nHold {(Ctrl)} to activate temporarily while commanding units.
|
TooltipDesc: Selected units will attack the targeted unit or location\n - Default activity for the target is suppressed\n - Allows targeting of own or ally forces\n - Long-range artillery units will always target the\n location, ignoring units and buildings\n\nLeft-click icon then right-click on target.\nHold <(Ctrl)> to activate temporarily while commanding units.
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP_FACTIONSUFFIX
|
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP_FACTIONSUFFIX
|
||||||
Children:
|
Children:
|
||||||
@@ -1421,7 +1421,7 @@ Container@PLAYER_WIDGETS:
|
|||||||
Background: chrome-button-background
|
Background: chrome-button-background
|
||||||
DisableKeySound: true
|
DisableKeySound: true
|
||||||
TooltipText: Waypoint Mode
|
TooltipText: Waypoint Mode
|
||||||
TooltipDesc: Use Waypoint Mode to give multiple linking commands\nto the selected units. Units will execute the commands\nimmediately upon receiving them.\n\nLeft-click icon then give commands in the game world.\nHold {(Shift)} to activate temporarily while commanding units.
|
TooltipDesc: Use Waypoint Mode to give multiple linking commands\nto the selected units. Units will execute the commands\nimmediately upon receiving them.\n\nLeft-click icon then give commands in the game world.\nHold <(Shift)> to activate temporarily while commanding units.
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP_FACTIONSUFFIX
|
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP_FACTIONSUFFIX
|
||||||
Children:
|
Children:
|
||||||
|
|||||||
@@ -131,42 +131,42 @@ Container@MAINMENU_INTRODUCTION_PROMPT:
|
|||||||
LabelWithHighlight@DESC_SELECTION:
|
LabelWithHighlight@DESC_SELECTION:
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Select units using the {Left} mouse button
|
Text: - Select units using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_COMMANDS:
|
LabelWithHighlight@DESC_COMMANDS:
|
||||||
Y: 17
|
Y: 17
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Command units using the {Left} mouse button
|
Text: - Command units using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_BUILDIGS:
|
LabelWithHighlight@DESC_BUILDIGS:
|
||||||
Y: 34
|
Y: 34
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Place structures using the {Left} mouse button
|
Text: - Place structures using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_SUPPORT:
|
LabelWithHighlight@DESC_SUPPORT:
|
||||||
Y: 51
|
Y: 51
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Target support powers using the {Left} mouse button
|
Text: - Target support powers using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_ZOOM:
|
LabelWithHighlight@DESC_ZOOM:
|
||||||
Y: 68
|
Y: 68
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Zoom the battlefield using the {Scroll Wheel}
|
Text: - Zoom the battlefield using the <Scroll Wheel>
|
||||||
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
||||||
Y: 68
|
Y: 68
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Zoom the battlefield using {MODIFIER + Scroll Wheel}
|
Text: - Zoom the battlefield using <MODIFIER + Scroll Wheel>
|
||||||
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
||||||
Y: 85
|
Y: 85
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Pan the battlefield using the {Right} mouse button
|
Text: - Pan the battlefield using the <Right> mouse button
|
||||||
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
||||||
Y: 85
|
Y: 85
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Pan the battlefield using the {Middle} mouse button
|
Text: - Pan the battlefield using the <Middle> mouse button
|
||||||
Label@DESC_EDGESCROLL:
|
Label@DESC_EDGESCROLL:
|
||||||
X: 9
|
X: 9
|
||||||
Y: 102
|
Y: 102
|
||||||
@@ -180,42 +180,42 @@ Container@MAINMENU_INTRODUCTION_PROMPT:
|
|||||||
LabelWithHighlight@DESC_SELECTION:
|
LabelWithHighlight@DESC_SELECTION:
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Select units using the {Left} mouse button
|
Text: - Select units using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_COMMANDS:
|
LabelWithHighlight@DESC_COMMANDS:
|
||||||
Y: 17
|
Y: 17
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Command units using the {Right} mouse button
|
Text: - Command units using the <Right> mouse button
|
||||||
LabelWithHighlight@DESC_BUILDIGS:
|
LabelWithHighlight@DESC_BUILDIGS:
|
||||||
Y: 34
|
Y: 34
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Place structures using the {Left} mouse button
|
Text: - Place structures using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_SUPPORT:
|
LabelWithHighlight@DESC_SUPPORT:
|
||||||
Y: 51
|
Y: 51
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Target support powers using the {Left} mouse button
|
Text: - Target support powers using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_ZOOM:
|
LabelWithHighlight@DESC_ZOOM:
|
||||||
Y: 68
|
Y: 68
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Zoom the battlefield using the {Scroll Wheel}
|
Text: - Zoom the battlefield using the <Scroll Wheel>
|
||||||
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
||||||
Y: 68
|
Y: 68
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Zoom the battlefield using {MODIFIER + Scroll Wheel}
|
Text: - Zoom the battlefield using <MODIFIER + Scroll Wheel>
|
||||||
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
||||||
Y: 85
|
Y: 85
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Pan the battlefield using the {Right} mouse button
|
Text: - Pan the battlefield using the <Right> mouse button
|
||||||
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
||||||
Y: 85
|
Y: 85
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Pan the battlefield using the {Middle} mouse button
|
Text: - Pan the battlefield using the <Middle> mouse button
|
||||||
Label@DESC_EDGESCROLL:
|
Label@DESC_EDGESCROLL:
|
||||||
X: 9
|
X: 9
|
||||||
Y: 102
|
Y: 102
|
||||||
|
|||||||
@@ -63,42 +63,42 @@ Container@INPUT_PANEL:
|
|||||||
LabelWithHighlight@DESC_SELECTION:
|
LabelWithHighlight@DESC_SELECTION:
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Select units using the {Left} mouse button
|
Text: - Select units using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_COMMANDS:
|
LabelWithHighlight@DESC_COMMANDS:
|
||||||
Y: 17
|
Y: 17
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Command units using the {Left} mouse button
|
Text: - Command units using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_BUILDIGS:
|
LabelWithHighlight@DESC_BUILDIGS:
|
||||||
Y: 34
|
Y: 34
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Place structures using the {Left} mouse button
|
Text: - Place structures using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_SUPPORT:
|
LabelWithHighlight@DESC_SUPPORT:
|
||||||
Y: 51
|
Y: 51
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Target support powers using the {Left} mouse button
|
Text: - Target support powers using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_ZOOM:
|
LabelWithHighlight@DESC_ZOOM:
|
||||||
Y: 68
|
Y: 68
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Zoom the battlefield using the {Scroll Wheel}
|
Text: - Zoom the battlefield using the <Scroll Wheel>
|
||||||
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
||||||
Y: 68
|
Y: 68
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Zoom the battlefield using {MODIFIER + Scroll Wheel}
|
Text: - Zoom the battlefield using <MODIFIER + Scroll Wheel>
|
||||||
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
||||||
Y: 85
|
Y: 85
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Pan the battlefield using the {Right} mouse button
|
Text: - Pan the battlefield using the <Right> mouse button
|
||||||
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
||||||
Y: 85
|
Y: 85
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Pan the battlefield using the {Middle} mouse button
|
Text: - Pan the battlefield using the <Middle> mouse button
|
||||||
Label@DESC_EDGESCROLL:
|
Label@DESC_EDGESCROLL:
|
||||||
X: 9
|
X: 9
|
||||||
Y: 102
|
Y: 102
|
||||||
@@ -113,42 +113,42 @@ Container@INPUT_PANEL:
|
|||||||
LabelWithHighlight@DESC_SELECTION:
|
LabelWithHighlight@DESC_SELECTION:
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Select units using the {Left} mouse button
|
Text: - Select units using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_COMMANDS:
|
LabelWithHighlight@DESC_COMMANDS:
|
||||||
Y: 17
|
Y: 17
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Command units using the {Right} mouse button
|
Text: - Command units using the <Right> mouse button
|
||||||
LabelWithHighlight@DESC_BUILDIGS:
|
LabelWithHighlight@DESC_BUILDIGS:
|
||||||
Y: 34
|
Y: 34
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Place structures using the {Left} mouse button
|
Text: - Place structures using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_SUPPORT:
|
LabelWithHighlight@DESC_SUPPORT:
|
||||||
Y: 51
|
Y: 51
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Target support powers using the {Left} mouse button
|
Text: - Target support powers using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_ZOOM:
|
LabelWithHighlight@DESC_ZOOM:
|
||||||
Y: 68
|
Y: 68
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Zoom the battlefield using the {Scroll Wheel}
|
Text: - Zoom the battlefield using the <Scroll Wheel>
|
||||||
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
||||||
Y: 68
|
Y: 68
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Zoom the battlefield using {MODIFIER + Scroll Wheel}
|
Text: - Zoom the battlefield using <MODIFIER + Scroll Wheel>
|
||||||
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
||||||
Y: 85
|
Y: 85
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Pan the battlefield using the {Right} mouse button
|
Text: - Pan the battlefield using the <Right> mouse button
|
||||||
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
||||||
Y: 85
|
Y: 85
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Pan the battlefield using the {Middle} mouse button
|
Text: - Pan the battlefield using the <Middle> mouse button
|
||||||
Label@DESC_EDGESCROLL:
|
Label@DESC_EDGESCROLL:
|
||||||
X: 9
|
X: 9
|
||||||
Y: 102
|
Y: 102
|
||||||
|
|||||||
@@ -126,42 +126,42 @@ Background@MAINMENU_INTRODUCTION_PROMPT:
|
|||||||
LabelWithHighlight@DESC_SELECTION:
|
LabelWithHighlight@DESC_SELECTION:
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Select units using the {Left} mouse button
|
Text: - Select units using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_COMMANDS:
|
LabelWithHighlight@DESC_COMMANDS:
|
||||||
Y: 17
|
Y: 17
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Command units using the {Left} mouse button
|
Text: - Command units using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_BUILDIGS:
|
LabelWithHighlight@DESC_BUILDIGS:
|
||||||
Y: 34
|
Y: 34
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Place structures using the {Left} mouse button
|
Text: - Place structures using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_SUPPORT:
|
LabelWithHighlight@DESC_SUPPORT:
|
||||||
Y: 51
|
Y: 51
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Target support powers using the {Left} mouse button
|
Text: - Target support powers using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_ZOOM:
|
LabelWithHighlight@DESC_ZOOM:
|
||||||
Y: 68
|
Y: 68
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Zoom the battlefield using the {Scroll Wheel}
|
Text: - Zoom the battlefield using the <Scroll Wheel>
|
||||||
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
||||||
Y: 68
|
Y: 68
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Zoom the battlefield using {MODIFIER + Scroll Wheel}
|
Text: - Zoom the battlefield using <MODIFIER + Scroll Wheel>
|
||||||
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
||||||
Y: 85
|
Y: 85
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Pan the battlefield using the {Right} mouse button
|
Text: - Pan the battlefield using the <Right> mouse button
|
||||||
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
||||||
Y: 85
|
Y: 85
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Pan the battlefield using the {Middle} mouse button
|
Text: - Pan the battlefield using the <Middle> mouse button
|
||||||
Label@DESC_EDGESCROLL:
|
Label@DESC_EDGESCROLL:
|
||||||
X: 9
|
X: 9
|
||||||
Y: 102
|
Y: 102
|
||||||
@@ -175,42 +175,42 @@ Background@MAINMENU_INTRODUCTION_PROMPT:
|
|||||||
LabelWithHighlight@DESC_SELECTION:
|
LabelWithHighlight@DESC_SELECTION:
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Select units using the {Left} mouse button
|
Text: - Select units using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_COMMANDS:
|
LabelWithHighlight@DESC_COMMANDS:
|
||||||
Y: 17
|
Y: 17
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Command units using the {Right} mouse button
|
Text: - Command units using the <Right> mouse button
|
||||||
LabelWithHighlight@DESC_BUILDIGS:
|
LabelWithHighlight@DESC_BUILDIGS:
|
||||||
Y: 34
|
Y: 34
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Place structures using the {Left} mouse button
|
Text: - Place structures using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_SUPPORT:
|
LabelWithHighlight@DESC_SUPPORT:
|
||||||
Y: 51
|
Y: 51
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Target support powers using the {Left} mouse button
|
Text: - Target support powers using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_ZOOM:
|
LabelWithHighlight@DESC_ZOOM:
|
||||||
Y: 68
|
Y: 68
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Zoom the battlefield using the {Scroll Wheel}
|
Text: - Zoom the battlefield using the <Scroll Wheel>
|
||||||
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
||||||
Y: 68
|
Y: 68
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Zoom the battlefield using {MODIFIER + Scroll Wheel}
|
Text: - Zoom the battlefield using <MODIFIER + Scroll Wheel>
|
||||||
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
||||||
Y: 85
|
Y: 85
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Pan the battlefield using the {Right} mouse button
|
Text: - Pan the battlefield using the <Right> mouse button
|
||||||
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
||||||
Y: 85
|
Y: 85
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Pan the battlefield using the {Middle} mouse button
|
Text: - Pan the battlefield using the <Middle> mouse button
|
||||||
Label@DESC_EDGESCROLL:
|
Label@DESC_EDGESCROLL:
|
||||||
X: 9
|
X: 9
|
||||||
Y: 102
|
Y: 102
|
||||||
|
|||||||
@@ -63,42 +63,42 @@ Container@INPUT_PANEL:
|
|||||||
LabelWithHighlight@DESC_SELECTION:
|
LabelWithHighlight@DESC_SELECTION:
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Select units using the {Left} mouse button
|
Text: - Select units using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_COMMANDS:
|
LabelWithHighlight@DESC_COMMANDS:
|
||||||
Y: 17
|
Y: 17
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Command units using the {Left} mouse button
|
Text: - Command units using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_BUILDIGS:
|
LabelWithHighlight@DESC_BUILDIGS:
|
||||||
Y: 34
|
Y: 34
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Place structures using the {Left} mouse button
|
Text: - Place structures using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_SUPPORT:
|
LabelWithHighlight@DESC_SUPPORT:
|
||||||
Y: 51
|
Y: 51
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Target support powers using the {Left} mouse button
|
Text: - Target support powers using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_ZOOM:
|
LabelWithHighlight@DESC_ZOOM:
|
||||||
Y: 68
|
Y: 68
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Zoom the battlefield using the {Scroll Wheel}
|
Text: - Zoom the battlefield using the <Scroll Wheel>
|
||||||
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
||||||
Y: 68
|
Y: 68
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Zoom the battlefield using {MODIFIER + Scroll Wheel}
|
Text: - Zoom the battlefield using <MODIFIER + Scroll Wheel>
|
||||||
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
||||||
Y: 85
|
Y: 85
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Pan the battlefield using the {Right} mouse button
|
Text: - Pan the battlefield using the <Right> mouse button
|
||||||
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
||||||
Y: 85
|
Y: 85
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Pan the battlefield using the {Middle} mouse button
|
Text: - Pan the battlefield using the <Middle> mouse button
|
||||||
Label@DESC_EDGESCROLL:
|
Label@DESC_EDGESCROLL:
|
||||||
X: 9
|
X: 9
|
||||||
Y: 102
|
Y: 102
|
||||||
@@ -113,42 +113,42 @@ Container@INPUT_PANEL:
|
|||||||
LabelWithHighlight@DESC_SELECTION:
|
LabelWithHighlight@DESC_SELECTION:
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Select units using the {Left} mouse button
|
Text: - Select units using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_COMMANDS:
|
LabelWithHighlight@DESC_COMMANDS:
|
||||||
Y: 17
|
Y: 17
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Command units using the {Right} mouse button
|
Text: - Command units using the <Right> mouse button
|
||||||
LabelWithHighlight@DESC_BUILDIGS:
|
LabelWithHighlight@DESC_BUILDIGS:
|
||||||
Y: 34
|
Y: 34
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Place structures using the {Left} mouse button
|
Text: - Place structures using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_SUPPORT:
|
LabelWithHighlight@DESC_SUPPORT:
|
||||||
Y: 51
|
Y: 51
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Target support powers using the {Left} mouse button
|
Text: - Target support powers using the <Left> mouse button
|
||||||
LabelWithHighlight@DESC_ZOOM:
|
LabelWithHighlight@DESC_ZOOM:
|
||||||
Y: 68
|
Y: 68
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Zoom the battlefield using the {Scroll Wheel}
|
Text: - Zoom the battlefield using the <Scroll Wheel>
|
||||||
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
||||||
Y: 68
|
Y: 68
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Zoom the battlefield using {MODIFIER + Scroll Wheel}
|
Text: - Zoom the battlefield using <MODIFIER + Scroll Wheel>
|
||||||
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
||||||
Y: 85
|
Y: 85
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Pan the battlefield using the {Right} mouse button
|
Text: - Pan the battlefield using the <Right> mouse button
|
||||||
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
||||||
Y: 85
|
Y: 85
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: - Pan the battlefield using the {Middle} mouse button
|
Text: - Pan the battlefield using the <Middle> mouse button
|
||||||
Label@DESC_EDGESCROLL:
|
Label@DESC_EDGESCROLL:
|
||||||
X: 9
|
X: 9
|
||||||
Y: 102
|
Y: 102
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ Container@PLAYER_WIDGETS:
|
|||||||
Key: AttackMove
|
Key: AttackMove
|
||||||
DisableKeySound: true
|
DisableKeySound: true
|
||||||
TooltipText: Attack Move
|
TooltipText: Attack Move
|
||||||
TooltipDesc: Selected units will move to the desired location\nand attack any enemies they encounter en route.\n\nHold {(Ctrl)} while targeting to order an Assault Move\nthat attacks any units or structures encountered en route.\n\nLeft-click icon then right-click on target location.
|
TooltipDesc: Selected units will move to the desired location\nand attack any enemies they encounter en route.\n\nHold <(Ctrl)> while targeting to order an Assault Move\nthat attacks any units or structures encountered en route.\n\nLeft-click icon then right-click on target location.
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP
|
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP
|
||||||
Children:
|
Children:
|
||||||
@@ -65,7 +65,7 @@ Container@PLAYER_WIDGETS:
|
|||||||
Background: command-button
|
Background: command-button
|
||||||
DisableKeySound: true
|
DisableKeySound: true
|
||||||
TooltipText: Force Move
|
TooltipText: Force Move
|
||||||
TooltipDesc: Selected units will move to the desired location\n - Default activity for the target is suppressed\n - Vehicles will attempt to crush enemies at the target location\n - Deployed thumpers will undeploy and move to the target location\n\nLeft-click icon then right-click on target.\nHold {(Alt)} to activate temporarily while commanding units.
|
TooltipDesc: Selected units will move to the desired location\n - Default activity for the target is suppressed\n - Vehicles will attempt to crush enemies at the target location\n - Deployed thumpers will undeploy and move to the target location\n\nLeft-click icon then right-click on target.\nHold <(Alt)> to activate temporarily while commanding units.
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP
|
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP
|
||||||
Children:
|
Children:
|
||||||
@@ -82,7 +82,7 @@ Container@PLAYER_WIDGETS:
|
|||||||
Background: command-button
|
Background: command-button
|
||||||
DisableKeySound: true
|
DisableKeySound: true
|
||||||
TooltipText: Force Attack
|
TooltipText: Force Attack
|
||||||
TooltipDesc: Selected units will attack the targeted unit or location\n - Default activity for the target is suppressed\n - Allows targeting of own or ally forces\n\nLeft-click icon then right-click on target.\nHold {(Ctrl)} to activate temporarily while commanding units.
|
TooltipDesc: Selected units will attack the targeted unit or location\n - Default activity for the target is suppressed\n - Allows targeting of own or ally forces\n\nLeft-click icon then right-click on target.\nHold <(Ctrl)> to activate temporarily while commanding units.
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP
|
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP
|
||||||
Children:
|
Children:
|
||||||
@@ -170,7 +170,7 @@ Container@PLAYER_WIDGETS:
|
|||||||
Background: command-button
|
Background: command-button
|
||||||
DisableKeySound: true
|
DisableKeySound: true
|
||||||
TooltipText: Waypoint Mode
|
TooltipText: Waypoint Mode
|
||||||
TooltipDesc: Use Waypoint Mode to give multiple linking commands\nto the selected units. Units will execute the commands\nimmediately upon receiving them.\n\nLeft-click icon then give commands in the game world.\nHold {(Shift)} to activate temporarily while commanding units.
|
TooltipDesc: Use Waypoint Mode to give multiple linking commands\nto the selected units. Units will execute the commands\nimmediately upon receiving them.\n\nLeft-click icon then give commands in the game world.\nHold <(Shift)> to activate temporarily while commanding units.
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP
|
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP
|
||||||
Children:
|
Children:
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ Container@PLAYER_WIDGETS:
|
|||||||
Key: AttackMove
|
Key: AttackMove
|
||||||
DisableKeySound: true
|
DisableKeySound: true
|
||||||
TooltipText: Attack Move
|
TooltipText: Attack Move
|
||||||
TooltipDesc: Selected units will move to the desired location\nand attack any enemies they encounter en route.\n\nHold {(Ctrl)} while targeting to order an Assault Move\nthat attacks any units or structures encountered en route.\n\nLeft-click icon then right-click on target location.
|
TooltipDesc: Selected units will move to the desired location\nand attack any enemies they encounter en route.\n\nHold <(Ctrl)> while targeting to order an Assault Move\nthat attacks any units or structures encountered en route.\n\nLeft-click icon then right-click on target location.
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP
|
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP
|
||||||
Children:
|
Children:
|
||||||
@@ -82,7 +82,7 @@ Container@PLAYER_WIDGETS:
|
|||||||
Background: command-button
|
Background: command-button
|
||||||
DisableKeySound: true
|
DisableKeySound: true
|
||||||
TooltipText: Force Move
|
TooltipText: Force Move
|
||||||
TooltipDesc: Selected units will move to the desired location\n - Default activity for the target is suppressed\n - Vehicles will attempt to crush enemies at the target location\n - Helicopters will land at the target location\n - Chrono Tanks will teleport towards the target location\n\nLeft-click icon then right-click on target.\nHold {(Alt)} to activate temporarily while commanding units.
|
TooltipDesc: Selected units will move to the desired location\n - Default activity for the target is suppressed\n - Vehicles will attempt to crush enemies at the target location\n - Helicopters will land at the target location\n - Chrono Tanks will teleport towards the target location\n\nLeft-click icon then right-click on target.\nHold <(Alt)> to activate temporarily while commanding units.
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP
|
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP
|
||||||
Children:
|
Children:
|
||||||
@@ -100,7 +100,7 @@ Container@PLAYER_WIDGETS:
|
|||||||
Background: command-button
|
Background: command-button
|
||||||
DisableKeySound: true
|
DisableKeySound: true
|
||||||
TooltipText: Force Attack
|
TooltipText: Force Attack
|
||||||
TooltipDesc: Selected units will attack the targeted unit or location\n - Default activity for the target is suppressed\n - Allows targeting of own or ally forces\n - Long-range artillery units will always target the\n location, ignoring units and buildings\n\nLeft-click icon then right-click on target.\nHold {(Ctrl)} to activate temporarily while commanding units.
|
TooltipDesc: Selected units will attack the targeted unit or location\n - Default activity for the target is suppressed\n - Allows targeting of own or ally forces\n - Long-range artillery units will always target the\n location, ignoring units and buildings\n\nLeft-click icon then right-click on target.\nHold <(Ctrl)> to activate temporarily while commanding units.
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP
|
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP
|
||||||
Children:
|
Children:
|
||||||
@@ -193,7 +193,7 @@ Container@PLAYER_WIDGETS:
|
|||||||
Background: command-button
|
Background: command-button
|
||||||
DisableKeySound: true
|
DisableKeySound: true
|
||||||
TooltipText: Waypoint Mode
|
TooltipText: Waypoint Mode
|
||||||
TooltipDesc: Use Waypoint Mode to give multiple linking commands\nto the selected units. Units will execute the commands\nimmediately upon receiving them.\n\nLeft-click icon then give commands in the game world.\nHold {(Shift)} to activate temporarily while commanding units.
|
TooltipDesc: Use Waypoint Mode to give multiple linking commands\nto the selected units. Units will execute the commands\nimmediately upon receiving them.\n\nLeft-click icon then give commands in the game world.\nHold <(Shift)> to activate temporarily while commanding units.
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP
|
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP
|
||||||
Children:
|
Children:
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ Container@PLAYER_WIDGETS:
|
|||||||
Key: AttackMove
|
Key: AttackMove
|
||||||
DisableKeySound: true
|
DisableKeySound: true
|
||||||
TooltipText: Attack Move
|
TooltipText: Attack Move
|
||||||
TooltipDesc: Selected units will move to the desired location\nand attack any enemies they encounter en route.\n\nHold {(Ctrl)} while targeting to order an Assault Move\nthat attacks any units or structures encountered en route.\n\nLeft-click icon then right-click on target location.
|
TooltipDesc: Selected units will move to the desired location\nand attack any enemies they encounter en route.\n\nHold <(Ctrl)> while targeting to order an Assault Move\nthat attacks any units or structures encountered en route.\n\nLeft-click icon then right-click on target location.
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP
|
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP
|
||||||
Children:
|
Children:
|
||||||
@@ -77,7 +77,7 @@ Container@PLAYER_WIDGETS:
|
|||||||
Background:
|
Background:
|
||||||
DisableKeySound: true
|
DisableKeySound: true
|
||||||
TooltipText: Force Move
|
TooltipText: Force Move
|
||||||
TooltipDesc: Selected units will move to the desired location\n - Default activity for the target is suppressed\n - Vehicles will attempt to crush enemies at the target location\n - Deployed units will undeploy and move to the target location\n - Helicopters will land at the target location\n\nLeft-click icon then right-click on target.\nHold {(Alt)} to activate temporarily while commanding units.
|
TooltipDesc: Selected units will move to the desired location\n - Default activity for the target is suppressed\n - Vehicles will attempt to crush enemies at the target location\n - Deployed units will undeploy and move to the target location\n - Helicopters will land at the target location\n\nLeft-click icon then right-click on target.\nHold <(Alt)> to activate temporarily while commanding units.
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP
|
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP
|
||||||
Children:
|
Children:
|
||||||
@@ -95,7 +95,7 @@ Container@PLAYER_WIDGETS:
|
|||||||
Background:
|
Background:
|
||||||
DisableKeySound: true
|
DisableKeySound: true
|
||||||
TooltipText: Force Attack
|
TooltipText: Force Attack
|
||||||
TooltipDesc: Selected units will attack the targeted unit or location\n - Default activity for the target is suppressed\n - Allows targeting of own or ally forces\n - Long-range artillery units will always target the\n location, ignoring units and buildings\n\nLeft-click icon then right-click on target.\nHold {(Ctrl)} to activate temporarily while commanding units.
|
TooltipDesc: Selected units will attack the targeted unit or location\n - Default activity for the target is suppressed\n - Allows targeting of own or ally forces\n - Long-range artillery units will always target the\n location, ignoring units and buildings\n\nLeft-click icon then right-click on target.\nHold <(Ctrl)> to activate temporarily while commanding units.
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP
|
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP
|
||||||
Children:
|
Children:
|
||||||
@@ -188,7 +188,7 @@ Container@PLAYER_WIDGETS:
|
|||||||
Background:
|
Background:
|
||||||
DisableKeySound: true
|
DisableKeySound: true
|
||||||
TooltipText: Waypoint Mode
|
TooltipText: Waypoint Mode
|
||||||
TooltipDesc: Use Waypoint Mode to give multiple linking commands\nto the selected units. Units will execute the commands\nimmediately upon receiving them.\n\nLeft-click icon then give commands in the game world.\nHold {(Shift)} to activate temporarily while commanding units.
|
TooltipDesc: Use Waypoint Mode to give multiple linking commands\nto the selected units. Units will execute the commands\nimmediately upon receiving them.\n\nLeft-click icon then give commands in the game world.\nHold <(Shift)> to activate temporarily while commanding units.
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP
|
TooltipTemplate: BUTTON_WITH_DESC_HIGHLIGHT_TOOLTIP
|
||||||
Children:
|
Children:
|
||||||
|
|||||||
Reference in New Issue
Block a user