Jump to content
LaunchBox Community Forums

Juzzotec

Members
  • Posts

    61
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Juzzotec's Achievements

16-Bit Artificial Intelligence

16-Bit Artificial Intelligence (4/7)

14

Reputation

  1. Would love this feature as well... For example... All the Arcade emulators games (e.g. Mame, Demul etc) can be consolidated into one Arcade Playlist and then you can promote that into the platform list. Now you dont want those individual platforms/emulators to be visible as well. This would really clean up the arcade category... can we please get this feature across the line 😙
  2. I'm also experiencing the same stuttering on my nvidia shield pro 2019. I never noticed this behaviour in the previous release. A bit unusual as this is running off an SSD.
  3. This is a great theme! Thanks Can someone please create the missing Nintendo 3DS Device Platform Image?
  4. Thanks for the tip @C-Beats Changing position has fixed the view for 21:9 users... Edited Wall2GamesView.xaml from <OrthographicCamera Position="-1,0,5" to "-1,0.5,5".
  5. Thanks @faeran and @C-Beats I'll try that and report back.... I do like the way it looks on my 21:9... it reminds me of that Nesicaxlive style look ?
  6. @faeran I love this wall view but in 21:9 aspect the top line images are cut off... anyway to fix this? ? (screenshot attached)
  7. I would just recommend the reset collection frontend at this stage... that's what I use on my shield
  8. I would of preferred if it pulled the images from the downloaded media... so many missing artwork doesn't look pretty and this is an awesome theme.
  9. Hi @Palada The startup themes are awesome, thank you. Can you please add the Sega Master System platform if possible?
  10. Excited for the Android version ? A break from the windows version will give the community time to come up with some ground breaking features. I currently use an iPhone XS but plan to switch to Android, probably a Samsung Note or Galaxy towards the end of this year. Thanks and Good luck @Jason Carr
  11. A visual queue for individual media per game to show a preview of the box, clear logo etc would look nice. Not necessary but cool.
  12. Thanks so much for the reply @Retro808, this cleared up a few things for me. My main issue is that I'm trying to use the designer view in visual studio as per your screenshot but this doesn't load at all when I'm reviewing the code. I might be a missing a view that may need to be checked? this would help me out a great deal. I am loading Default.xaml and Default Shutdown.xmal
  13. Hi Guys Simple question really for the coding noobs like me, are there any useful tutorials for startup theme creation? I want to understand all the key elements, this example is based on my favourite theme by @keltoigael called minimal. First Section <UserControl xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" mc:Ignorable="d" d:DesignHeight="562" d:DesignWidth="1000" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" FocusVisualStyle="{x:Null}" BorderThickness="0" Margin="0" Padding="0" Background="#000"> Second Section <Canvas Name="Canvas"> <Image Source="{}pack://siteoforigin:,,,/StartupThemes/Minimal/background/launching.png" Stretch="UniformToFill" RenderOptions.BitmapScalingMode="HighQuality" Height="{Binding ElementName=Canvas, Path=ActualHeight}" Width="{Binding ElementName=Canvas, Path=ActualWidth}" /> <Grid Height="{Binding ElementName=Canvas, Path=ActualHeight}" Width="{Binding ElementName=Canvas, Path=ActualWidth}"> <Grid.Background> <SolidColorBrush Color="Black" Opacity="{Binding BackgroundFade}" /> </Grid.Background> <Grid.RowDefinitions> <RowDefinition Height="30*" /> <RowDefinition Height="10*" /> <RowDefinition Height="45*" /> <RowDefinition Height="10*" /> <RowDefinition Height="8*" /> <RowDefinition Height="35*" /> <RowDefinition Height="9*" /> </Grid.RowDefinitions> <Grid.ColumnDefinitions> <ColumnDefinition Width="10*" /> <ColumnDefinition Width="31*" /> <ColumnDefinition Width="20*" /> <ColumnDefinition Width="31*" /> <ColumnDefinition Width="10*" /> </Grid.ColumnDefinitions> <Image Grid.ColumnSpan="5" Grid.RowSpan="7" Source="{}pack://siteoforigin:,,,/StartupThemes/minimal/platform/arcade.png" Opacity="100" Panel.ZIndex="1" Stretch="Fill" RenderOptions.BitmapScalingMode="HighQuality" /> I want to understand the concept of controlling where things are on the screen. Specifically <Grid.RowDefinitions> and <Image Grid.ColumnSpan="5" Grid.RowSpan="7"... I kind of worked out how to change source based on other themes that call for clearlogo etc Also when I changed the code to show the clear logo instead of platform image, I specified a global height and width to shrink the images, is this correct? This is the code I changed and it shows all clear logos as 500x500 now. <Image Grid.ColumnSpan="5" Grid.RowSpan="7" Source="{Binding SelectedGame.ClearLogoImagePath}" Opacity="100" Panel.ZIndex="1" Width="500" Height="500" RenderOptions.BitmapScalingMode="HighQuality" /> Any help is appreciated.
  14. @wallmachine Can you share the script you used in your bat file? Wouldn’t mind trying it your way and seeing if there’s any difference.
×
×
  • Create New...