From ab0bf465dc4e4f4a1f2d2555fcf6a33f38fbe251 Mon Sep 17 00:00:00 2001 From: dexy Date: Thu, 30 Dec 2021 20:21:26 +1100 Subject: [PATCH] Made UGC files open with text editor, however FCTB always converts tabs to spaces so still recommended to edit these with a real text editor. --- CodeWalker/ExploreForm.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/CodeWalker/ExploreForm.cs b/CodeWalker/ExploreForm.cs index c773fb0..4cfd93d 100644 --- a/CodeWalker/ExploreForm.cs +++ b/CodeWalker/ExploreForm.cs @@ -268,6 +268,7 @@ namespace CodeWalker InitFileType(".ini", "Config Text", 5, FileTypeAction.ViewText); InitFileType(".vdf", "Steam Script File", 5, FileTypeAction.ViewText); InitFileType(".sps", "Shader Preset", 5, FileTypeAction.ViewText); + InitFileType(".ugc", "User-Generated Content", 5, FileTypeAction.ViewText); InitFileType(".xml", "XML File", 6, FileTypeAction.ViewXml); InitFileType(".meta", "Metadata (XML)", 6, FileTypeAction.ViewXml); InitFileType(".ymt", "Metadata (Binary)", 6, FileTypeAction.ViewYmt, true);