playnite-successstory-plugin
playnite-successstory-plugin copied to clipboard
Achievement List for Fullscreen themes (ps5ish)
suggestion: be able to access a list of achievements through the ps5ish fullscreen theme, similar to what already happens in windowed mode.
A simple list so that we can see the achievements that we have unlocked and which are still to be unlocked, by the ps5ish theme in fullscreen.
mouse.
great work, keep it up.
I second this, because when you open the window of achievements in PS5ish you cannot do anything without using a mouse and that beats the whole reason of having the fullscreen mode instead of desktop mode.
+1
I've tried to get them by ListAchievements as described in FAQ but not achieved result. List is empty, or maybe I've tried some wrong binding.
In Main.Xaml
& GameDetails.xaml
, you can use ListAchievements
with property taht you find here.
example:
<ItemsControl ItemsSource="{PluginSettings Plugin=SuccessStory, Path=ListAchievements}" >
<ItemsControl.ItemTemplate>
<DataTemplate>
<Grid Margin="0,0,0,5">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<TextBlock Text="{Binding Name}" />
</Grid>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>