SandboxWindow.xaml 2.1 KB

123456789101112131415161718192021222324252627
  1. <windows:SandboxWindow
  2. xmlns="https://spacestation14.io"
  3. xmlns:windows="clr-namespace:Content.Client.UserInterface.Systems.Sandbox.Windows"
  4. Title="{Loc sandbox-window-title}"
  5. Resizable="False">
  6. <BoxContainer Orientation="Vertical" SeparationOverride="4">
  7. <Label Text="{Loc sandbox-window-map-editing-label}"/>
  8. <Button Name="SpawnTilesButton" Access="Public" Text="{Loc sandbox-window-spawn-tiles-button}"/>
  9. <Button Name="SpawnEntitiesButton" Access="Public" Text="{Loc sandbox-window-spawn-entities-button}"/>
  10. <Button Name="SpawnDecalsButton" Access="Public" Text="{Loc sandbox-window-spawn-decals-button}"/>
  11. <Label Text="{Loc sandbox-window-visibility-label}"/>
  12. <Button Name="ToggleLightButton" Access="Public" Text="{Loc sandbox-window-toggle-lights-button}" ToggleMode="True"/>
  13. <Button Name="ToggleFovButton" Access="Public" Text="{Loc sandbox-window-toggle-fov-button}" ToggleMode="True"/>
  14. <Button Name="ToggleShadowsButton" Access="Public" Text="{Loc sandbox-window-toggle-shadows-button}" ToggleMode="True"/>
  15. <Button Name="ToggleSubfloorButton" Access="Public" Text="{Loc sandbox-window-toggle-subfloor-button}" ToggleMode="True"/>
  16. <Button Name="AiOverlayButton" Access="Public" Text="{Loc sandbox-window-ai-overlay-button}" ToggleMode="True"/>
  17. <Button Name="ShowMarkersButton" Access="Public" Text="{Loc sandbox-window-show-spawns-button}" ToggleMode="True"/>
  18. <Button Name="ShowBbButton" Access="Public" Text="{Loc sandbox-window-show-bb-button}" ToggleMode="True"/>
  19. <Label Text="{Loc sandbox-window-your-character-label}"/>
  20. <Button Name="GiveAghostButton" Access="Public" Text="{Loc sandbox-window-ghost-button}"/>
  21. <Button Name="GiveFullAccessButton" Access="Public" Text="{Loc sandbox-window-grant-full-access-button}"/>
  22. <Button Name="SuicideButton" Access="Public" Text="{Loc sandbox-window-toggle-suicide-button}"/>
  23. <Button Name="RespawnButton" Access="Public" Text="{Loc sandbox-window-respawn-button}"/>
  24. </BoxContainer>
  25. </windows:SandboxWindow>