Split Fiction and Brickadia support
Some checks failed
FModel QA Builder / build (push) Has been cancelled

This commit is contained in:
LongerWarrior
2025-03-09 00:15:45 +02:00
parent 814f34d534
commit 20a5c63baa
2 changed files with 13 additions and 2 deletions

View File

@@ -578,7 +578,8 @@ public class CUE4ParseViewModel : ViewModel
case "manifest":
case "uplugin":
case "archive":
case "vmodule":
case "vmodule":
case "uparam": // Steel Hunters
case "verse":
case "html":
case "json":
@@ -713,6 +714,16 @@ public class CUE4ParseViewModel : ViewModel
break;
}
case "upipelinecache":
{
var archive = entry.CreateReader();
var ar = new FPipelineCacheFile(archive);
TabControl.SelectedTab.SetDocumentText(JsonConvert.SerializeObject(ar, Formatting.Indented), saveProperties, updateUi);
break;
}
case "res": // just skip
break;
default:
{
FLogger.Append(ELog.Warning, () =>