Compare commits

..

1 commit

Author SHA1 Message Date
Goodfeat
dc83237ed7 Merge branch 'master_Tweaks' into 'master'
Added: Fix Occlusion Culling

See merge request ryubing/ryujinx!18
2025-04-18 23:36:54 -05:00

View file

@ -33,7 +33,7 @@
<StackPanel <StackPanel
Margin="10" Margin="10"
Orientation="Vertical" Orientation="Vertical"
Spacing="10"> Spacing="5">
<TextBlock <TextBlock
HorizontalAlignment="Center" HorizontalAlignment="Center"
Classes="h1" Classes="h1"
@ -43,30 +43,28 @@
Foreground="{DynamicResource SecondaryTextColor}" Foreground="{DynamicResource SecondaryTextColor}"
TextDecorations="Underline" TextDecorations="Underline"
Text="Highly specific hacks &amp; tricks to alleviate performance issues, crashing, or freezing. Can cause issues." /> Text="Highly specific hacks &amp; tricks to alleviate performance issues, crashing, or freezing. Can cause issues." />
<Separator/> <Separator/>
<StackPanel Margin="10,0,0,0"> <CheckBox IsChecked="{Binding DirtyHacks.Xc2MenuSoftlockFix}"
<CheckBox IsChecked="{Binding DirtyHacks.Xc2MenuSoftlockFix}" ToolTip.Tip="{Binding DirtyHacks.Xc2MenuFixTooltip}">
ToolTip.Tip="{Binding DirtyHacks.Xc2MenuFixTooltip}"> <StackPanel Orientation="Horizontal">
<StackPanel Orientation="Horizontal"> <TextBlock Text="Xenoblade Chronicles 2 Menu Softlock Fix" />
<TextBlock Text="Xenoblade Chronicles 2 Menu Softlock Fix" /> <TextBlock Classes="DefaultDisable" Text="Default: disable" />
<TextBlock Classes="DefaultDisable" Text="Default: disable" /> </StackPanel>
</StackPanel> </CheckBox>
</CheckBox> <CheckBox IsChecked="{Binding DirtyHacks.NifmDisableIsAnyInternetRequestAccepted}"
<CheckBox IsChecked="{Binding DirtyHacks.NifmDisableIsAnyInternetRequestAccepted}" ToolTip.Tip="{Binding DirtyHacks.NifmDisableIsAnyInternetRequestAcceptedTooltip}">
ToolTip.Tip="{Binding DirtyHacks.NifmDisableIsAnyInternetRequestAcceptedTooltip}"> <StackPanel Orientation="Horizontal">
<StackPanel Orientation="Horizontal"> <TextBlock Text="Disable IsAnyInternetRequestAccepted" />
<TextBlock Text="Disable IsAnyInternetRequestAccepted" /> <TextBlock Classes="DefaultDisable" Text="Default: disable" />
<TextBlock Classes="DefaultDisable" Text="Default: disable" /> </StackPanel>
</StackPanel> </CheckBox>
</CheckBox> <CheckBox IsChecked="{Binding DisableFixOcclusionCulling}"
<CheckBox IsChecked="{Binding DisableFixOcclusionCulling}" ToolTip.Tip="{ext:Locale DisableFixOcclusionCullingTooltip}">
ToolTip.Tip="{ext:Locale DisableFixOcclusionCullingTooltip}"> <StackPanel Orientation="Horizontal">
<StackPanel Orientation="Horizontal"> <TextBlock Text="{ext:Locale DisableFixOcclusionCulling}" />
<TextBlock Text="{ext:Locale DisableFixOcclusionCulling}" /> <TextBlock Classes="DefaultDisable" Text="Default: disable" />
<TextBlock Classes="DefaultDisable" Text="Default: disable" /> </StackPanel>
</StackPanel> </CheckBox>
</CheckBox>
</StackPanel>
</StackPanel> </StackPanel>
</Border> </Border>
</ScrollViewer> </ScrollViewer>