mirror of
https://github.com/4sval/FModel.git
synced 2026-08-04 17:57:47 -05:00
Lord of Mysteries initial support
Some checks failed
FModel QA Builder / build (push) Has been cancelled
Some checks failed
FModel QA Builder / build (push) Has been cancelled
Wwise, Kismet, Shaders fixes
This commit is contained in:
parent
afd159eb03
commit
c1a241af96
|
|
@ -1 +1 @@
|
|||
Subproject commit 8c8eb2358e0d9c1b9dd9dfeed93d72ded87fce35
|
||||
Subproject commit f90db3974debc3cd1253fd03c91d01a2ef1be72c
|
||||
|
|
@ -1237,7 +1237,7 @@ public class CUE4ParseViewModel : ViewModel
|
|||
{
|
||||
if (!TabControl.CanAddTabs) return false;
|
||||
|
||||
TabControl.AddTab($"{verseDigest.ProjectName}.verse");
|
||||
TabControl.AddTab($"{verseDigest.Name}.verse");
|
||||
TabControl.SelectedTab.Highlighter = AvalonExtensions.HighlighterSelector("verse");
|
||||
TabControl.SelectedTab.SetDocumentText(verseDigest.ReadableCode, false, false);
|
||||
return true;
|
||||
|
|
@ -1621,7 +1621,7 @@ public class CUE4ParseViewModel : ViewModel
|
|||
if (dummy is not UClass || pointer.Object.Value is not UClass blueprint)
|
||||
continue;
|
||||
|
||||
cppList.Add(blueprint.DecompileBlueprintToPseudo(pkg.Mappings, cookedMetaData));
|
||||
cppList.Add(blueprint.DecompileBlueprintToPseudo(cookedMetaData));
|
||||
}
|
||||
|
||||
if (cppList.Count == 0) return false;
|
||||
|
|
|
|||
|
|
@ -121,7 +121,7 @@ public partial class SettingsView
|
|||
{
|
||||
Title = "Select a mapping file",
|
||||
InitialDirectory = Path.Combine(UserSettings.Default.OutputDirectory, ".data"),
|
||||
Filter = "USMAP Files (*.usmap)|*.usmap|All Files (*.*)|*.*"
|
||||
Filter = "USMAP Files (*.usmap, *.jmap, *.jmap.gz)|*.usmap;*.jmap;*.jmap.gz|All Files (*.*)|*.*"
|
||||
};
|
||||
|
||||
if (!openFileDialog.ShowDialog().GetValueOrDefault())
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user