mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-06-09 13:26:34 +02:00
3172ada563
* Move character preview handling into a specialized control Co-authored-by: Quantum-cross <7065792+Quantum-cross@users.noreply.github.com> * Restore job name that I accidentally removed from character picker buttons * Just resolve dependencies the standard way --------- Co-authored-by: Quantum-cross <7065792+Quantum-cross@users.noreply.github.com> Co-authored-by: Janet Blackquill <uhhadd@gmail.com>
29 lines
1.5 KiB
XML
29 lines
1.5 KiB
XML
<Control
|
|
xmlns="https://spacestation14.io"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
|
|
xmlns:profile="clr-namespace:Content.Client.Lobby.UI.ProfileEditorControls">
|
|
<BoxContainer Name="VBox" Orientation="Vertical">
|
|
<controls:NanoHeading Name="Header" Text="{Loc 'lobby-character-preview-panel-header'}">
|
|
|
|
</controls:NanoHeading>
|
|
<BoxContainer Name="Loaded" Orientation="Vertical"
|
|
Visible="False">
|
|
<Label Name="Summary" HorizontalAlignment="Center" Margin="3 3"/>
|
|
<BoxContainer Name="ViewBox" Orientation="Horizontal" HorizontalAlignment="Center">
|
|
<profile:ProfilePreviewSpriteView Name="ProfilePreviewSpriteView"
|
|
OverrideDirection="South"
|
|
Scale="4 4"
|
|
MaxSize="112 112"
|
|
Stretch="Fill"
|
|
Access="Public" />
|
|
</BoxContainer>
|
|
<controls:VSpacer/>
|
|
<Button Name="CharacterSetup" Text="{Loc 'lobby-character-preview-panel-character-setup-button'}"
|
|
HorizontalAlignment="Center"
|
|
Margin="0 5 0 0"/>
|
|
</BoxContainer>
|
|
<Label Name="Unloaded" Text="{Loc 'lobby-character-preview-panel-unloaded-preferences-label'}"/>
|
|
</BoxContainer>
|
|
</Control>
|