| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?xml version="1.0" encoding="utf-8"?>
- <!-- *********************************************************************** -->
- <!-- * Handles the selection of objects in game. * -->
- <!-- *********************************************************************** -->
- <UIComponentObjectSelector xmlns="uri:ea.com:eala:asset"
- Priority="300"
- ShowAllHealthBars="true"
- PortraitName="SUDSPortrait"
- UnitAbility="SUDSUnitAbility"
- StatusTextNothingSelected="GUI:NothingSelected"
- StatusTextSelectedAcrossMap="GUI:SelectedAcrossMap"
- StatusTextSelectedAcrossScreen="GUI:SelectedAcrossScreen"
- AllArmyImageGDI="Portrait_AllArmyGDI"
- AllArmyImageNOD="Portrait_AllArmyNOD"
- AllArmyImageAlien="Portrait_AllArmyAlien"
- ClockImage="Button_ClockCountdown"
- AssaultTargetForceFeedback="AssaultTarget">
- <AlienHighlightDecal>
- <Component
- Texture="decal_Highlight_Alien"
- Texture2=""
- Style="ALPHA_DECAL"
- OpacityMin="50"
- OpacityMax="100"
- MinRadius="40"
- MaxRadius="200"/>
- </AlienHighlightDecal>
- <GDIHighlightDecal>
- <Component
- Texture="decal_Highlight_GDI"
- Texture2=""
- Style="ALPHA_DECAL"
- OpacityMin="50"
- OpacityMax="100"
- MinRadius="40"
- MaxRadius="200"/>
- </GDIHighlightDecal>
- <NODHighlightDecal>
- <Component
- Texture="decal_Highlight_NOD"
- Texture2=""
- Style="ALPHA_DECAL"
- OpacityMin="50"
- OpacityMax="100"
- MinRadius="40"
- MaxRadius="200"/>
- </NODHighlightDecal>
- <!--
- Each ShortcutObjects list means that these units will be categorized
- as units that can be selected as a shortcut (using the Dpad). In this
- case commandos will come before engineers in the selection order.
- -->
- <ShortcutObjects Rule="NONE">
- <IncludeThing>AlliedCommandoTech1</IncludeThing>
- <IncludeThing>SovietCommandoTech1</IncludeThing>
- <IncludeThing>JapanCommandoTech1</IncludeThing>
- </ShortcutObjects>
- <ShortcutObjects Rule="NONE">
- <IncludeThing>JapanInfiltrationInfantry</IncludeThing>
- <IncludeThing>AlliedInfiltrationInfantry</IncludeThing>
- </ShortcutObjects>
- <ShortcutObjects Rule="NONE">
- <IncludeThing>AlliedEngineer</IncludeThing>
- <IncludeThing>SovietEngineer</IncludeThing>
- <IncludeThing>JapanEngineer</IncludeThing>
- </ShortcutObjects>
- <SupportObjects Rule="NONE">
- <IncludeThing>AlliedMCV</IncludeThing>
- <IncludeThing>JapanMCV</IncludeThing>
- <IncludeThing>SovietMCV</IncludeThing>
- </SupportObjects>
- <SupportObjects Rule="NONE" Include="UNPACKS_INTO_BUILDING">
- </SupportObjects>
- <SupportObjects Rule="NONE">
- <IncludeThing>SovietMiner</IncludeThing>
- <IncludeThing>JapanMiner</IncludeThing>
- </SupportObjects>
- <ClockColor R="255" G="255" B="255" A="255"/>
- </UIComponentObjectSelector>
|