playnite-successstory-plugin icon indicating copy to clipboard operation
playnite-successstory-plugin copied to clipboard

Achievement List for Fullscreen themes (ps5ish)

Open BrunoYagami opened this issue 2 years ago • 3 comments

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. ef47a04b-2d3e-4f00-8e8b-b155d65612de xqf6qtvvc0f61

BrunoYagami avatar Jun 13 '22 22:06 BrunoYagami

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.

zetalex avatar Aug 28 '22 10:08 zetalex

+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.

dukobpa3 avatar Oct 18 '22 11:10 dukobpa3

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>

Lacro59 avatar Dec 14 '22 16:12 Lacro59