mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-03 02:27:08 +02:00
* Initial commit * Add tile rotation/mirror perms * Nicer UI for the rotation * Review fixes (also seemed to have missed applying the serialization reading oops) * One less byte, one less struct size! * Pretty sure it goes here too * Fix error
19 lines
908 B
XML
19 lines
908 B
XML
<TileSpawnWindow
|
|
xmlns="https://spacestation14.io"
|
|
Title="{Loc tile-spawn-window-title}"
|
|
SetSize="300 300"
|
|
MinSize="300 200">
|
|
<BoxContainer Orientation="Vertical">
|
|
<BoxContainer Orientation="Horizontal">
|
|
<LineEdit Name="SearchBar" Access="Public" HorizontalExpand="True" PlaceHolder="Search"/>
|
|
<Button Name="ClearButton" Access="Public" Text="Clear"/>
|
|
</BoxContainer>
|
|
<ItemList Name="TileList" Access="Public" VerticalExpand="True"/>
|
|
<BoxContainer Orientation="Horizontal">
|
|
<Button Name="MirroredButton" Access="Public" ToggleMode="True" Text="{Loc tile-spawn-window-mirror-button-text}"/>
|
|
<Button Name="EraseButton" Access="Public" ToggleMode="True" Text="{Loc window-erase-button-text}"/>
|
|
</BoxContainer>
|
|
<Label Name="RotationLabel" Access="Public"/>
|
|
</BoxContainer>
|
|
</TileSpawnWindow>
|