GraphicsTab.xaml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <tabs:GraphicsTab xmlns="https://spacestation14.io"
  2. xmlns:tabs="clr-namespace:Content.Client.Options.UI.Tabs"
  3. xmlns:ui="clr-namespace:Content.Client.Options.UI">
  4. <BoxContainer Orientation="Vertical">
  5. <ScrollContainer VerticalExpand="True">
  6. <BoxContainer Orientation="Vertical" Margin="8 8 8 8">
  7. <!-- Display -->
  8. <Label Text="{Loc 'ui-options-display-label'}" StyleClasses="LabelKeyText"/>
  9. <CheckBox Name="VSyncCheckBox" Text="{Loc 'ui-options-vsync'}" />
  10. <CheckBox Name="FullscreenCheckBox" Text="{Loc 'ui-options-fullscreen'}" />
  11. <!-- Quality -->
  12. <Label Text="{Loc 'ui-options-quality-label'}" StyleClasses="LabelKeyText"/>
  13. <ui:OptionDropDown Name="DropDownLightingQuality" Title="{Loc 'ui-options-lighting-label'}" />
  14. <CheckBox Name="ViewportLowResCheckBox" Text="{Loc 'ui-options-vp-low-res'}" />
  15. <CheckBox Name="ParallaxLowQualityCheckBox" Text="{Loc 'ui-options-parallax-low-quality'}" />
  16. <!-- Interface -->
  17. <Label Text="{Loc 'ui-options-interface-label'}" StyleClasses="LabelKeyText"/>
  18. <ui:OptionDropDown Name="DropDownUIScale" Title="{Loc 'ui-options-scale-label'}" />
  19. <CheckBox Name="ViewportStretchCheckBox" Text="{Loc 'ui-options-vp-stretch'}" />
  20. <ui:OptionSlider Name="ViewportScaleSlider" Title="{Loc ui-options-vp-scale}" />
  21. <ui:OptionSlider Name="ViewportWidthSlider" Title="{Loc ui-options-vp-width}" />
  22. <CheckBox Name="IntegerScalingCheckBox"
  23. Text="{Loc 'ui-options-vp-integer-scaling'}"
  24. ToolTip="{Loc 'ui-options-vp-integer-scaling-tooltip'}" />
  25. <CheckBox Name="ViewportVerticalFitCheckBox"
  26. Text="{Loc 'ui-options-vp-vertical-fit'}"
  27. ToolTip="{Loc 'ui-options-vp-vertical-fit-tooltip'}" />
  28. <!-- Misc -->
  29. <Label Text="{Loc 'ui-options-misc-label'}" StyleClasses="LabelKeyText"/>
  30. <CheckBox Name="FpsCounterCheckBox" Text="{Loc 'ui-options-fps-counter'}" />
  31. </BoxContainer>
  32. </ScrollContainer>
  33. <ui:OptionsTabControlRow Name="Control" Access="Public" />
  34. </BoxContainer>
  35. </tabs:GraphicsTab>