mirror of
https://github.com/4sval/FModel.git
synced 2026-09-22 16:34:41 -05:00
bump
This commit is contained in:
Submodule CUE4Parse updated: 9ea4df652f...9a5f8b9f38
@@ -61,7 +61,6 @@ public class ExportOptionsViewModel : ViewModel
|
||||
set
|
||||
{
|
||||
if (!SetProperty(ref field, value)) return;
|
||||
RaisePropertyChanged(nameof(SocketSettingsEnabled));
|
||||
RaisePropertyChanged(nameof(CompressionSettingsEnabled));
|
||||
RaisePropertyChanged(nameof(TextureFormatsEnabled));
|
||||
|
||||
@@ -105,8 +104,6 @@ public class ExportOptionsViewModel : ViewModel
|
||||
set => SetProperty(ref field, value);
|
||||
}
|
||||
|
||||
public bool SocketSettingsEnabled => SelectedMeshFormat == EMeshFormat.ActorX;
|
||||
|
||||
public IEnumerable<EFileCompressionFormat> CompressionFormats { get; } = Enum.GetValues<EFileCompressionFormat>();
|
||||
public EFileCompressionFormat SelectedCompressionFormat
|
||||
{
|
||||
|
||||
@@ -125,12 +125,10 @@
|
||||
</ComboBox.ItemTemplate>
|
||||
</ComboBox>
|
||||
|
||||
<TextBlock Grid.Row="6" Grid.Column="0" Text="Socket Format" VerticalAlignment="Center" Margin="0 0 0 5"
|
||||
IsEnabled="{Binding SocketSettingsEnabled}" />
|
||||
<TextBlock Grid.Row="6" Grid.Column="0" Text="Socket Format" VerticalAlignment="Center" Margin="0 0 0 5" />
|
||||
<ComboBox Grid.Row="6" Grid.Column="2" Grid.ColumnSpan="3" Margin="0 0 0 5"
|
||||
ItemsSource="{Binding SocketFormats}"
|
||||
SelectedItem="{Binding SelectedSocketFormat, Mode=TwoWay}"
|
||||
IsEnabled="{Binding SocketSettingsEnabled}">
|
||||
SelectedItem="{Binding SelectedSocketFormat, Mode=TwoWay}">
|
||||
<ComboBox.ItemTemplate>
|
||||
<DataTemplate>
|
||||
<TextBlock Text="{Binding Converter={x:Static converters:EnumToStringConverter.Instance}}" />
|
||||
|
||||
@@ -191,7 +191,6 @@ public class Options
|
||||
{
|
||||
var guid = o.LightingGuid;
|
||||
if (Textures.TryGetValue(guid, out texture)) return texture != null;
|
||||
if (o.Format == EPixelFormat.PF_BC6H) return false; // BC6H is not supported by Decode thus randomly crashes the app
|
||||
|
||||
var bitmap = o switch
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user