diff --git a/.vs/Switch_Toolbox/v15/.suo b/.vs/Switch_Toolbox/v15/.suo index dca042fa..28c1b047 100644 Binary files a/.vs/Switch_Toolbox/v15/.suo and b/.vs/Switch_Toolbox/v15/.suo differ diff --git a/.vs/Switch_Toolbox/v15/Server/sqlite3/storage.ide b/.vs/Switch_Toolbox/v15/Server/sqlite3/storage.ide index e6e270c0..a5b54a6c 100644 Binary files a/.vs/Switch_Toolbox/v15/Server/sqlite3/storage.ide and b/.vs/Switch_Toolbox/v15/Server/sqlite3/storage.ide differ diff --git a/.vs/Switch_Toolbox/v15/Server/sqlite3/storage.ide-shm b/.vs/Switch_Toolbox/v15/Server/sqlite3/storage.ide-shm index e1689ee7..bbdc82d9 100644 Binary files a/.vs/Switch_Toolbox/v15/Server/sqlite3/storage.ide-shm and b/.vs/Switch_Toolbox/v15/Server/sqlite3/storage.ide-shm differ diff --git a/.vs/Switch_Toolbox/v15/Server/sqlite3/storage.ide-wal b/.vs/Switch_Toolbox/v15/Server/sqlite3/storage.ide-wal index 5c2610ac..464ec6e6 100644 Binary files a/.vs/Switch_Toolbox/v15/Server/sqlite3/storage.ide-wal and b/.vs/Switch_Toolbox/v15/Server/sqlite3/storage.ide-wal differ diff --git a/Switch_FileFormatsMain/FileFormats/Audio/Archives/BARS.cs b/Switch_FileFormatsMain/FileFormats/Audio/Archives/BARS.cs index 8e076281..1832a34c 100644 --- a/Switch_FileFormatsMain/FileFormats/Audio/Archives/BARS.cs +++ b/Switch_FileFormatsMain/FileFormats/Audio/Archives/BARS.cs @@ -235,6 +235,9 @@ namespace FirstPlugin for (int i = 0; i < bars.AudioEntries.Count; i++) { var amtaWrapper = new MetaDataNodeWrapper(bars.AudioEntries[i].MetaData); + amtaWrapper.ImageKey = "MetaInfo"; + amtaWrapper.SelectedImageKey = amtaWrapper.ImageKey; + string audioName = bars.AudioEntries[i].MetaData.Name; amtaWrapper.Text = $"{audioName}.amta"; diff --git a/Switch_FileFormatsMain/Switch_FileFormatsMain.csproj b/Switch_FileFormatsMain/Switch_FileFormatsMain.csproj index ce91b431..48e14c88 100644 --- a/Switch_FileFormatsMain/Switch_FileFormatsMain.csproj +++ b/Switch_FileFormatsMain/Switch_FileFormatsMain.csproj @@ -1322,5 +1322,8 @@ + + + \ No newline at end of file diff --git a/Switch_FileFormatsMain/obj/Release/DesignTimeResolveAssemblyReferences.cache b/Switch_FileFormatsMain/obj/Release/DesignTimeResolveAssemblyReferences.cache index 75bede46..6ca15311 100644 Binary files a/Switch_FileFormatsMain/obj/Release/DesignTimeResolveAssemblyReferences.cache and b/Switch_FileFormatsMain/obj/Release/DesignTimeResolveAssemblyReferences.cache differ diff --git a/Switch_FileFormatsMain/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/Switch_FileFormatsMain/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache index 9c2f7a12..f57efc63 100644 Binary files a/Switch_FileFormatsMain/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache and b/Switch_FileFormatsMain/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/Switch_FileFormatsMain/obj/Release/Switch_FileFormatsMain.csprojAssemblyReference.cache b/Switch_FileFormatsMain/obj/Release/Switch_FileFormatsMain.csprojAssemblyReference.cache index b066df77..ef7a9408 100644 Binary files a/Switch_FileFormatsMain/obj/Release/Switch_FileFormatsMain.csprojAssemblyReference.cache and b/Switch_FileFormatsMain/obj/Release/Switch_FileFormatsMain.csprojAssemblyReference.cache differ diff --git a/Switch_FileFormatsMain/obj/Release/TempPE/Properties.Resources.Designer.cs.dll b/Switch_FileFormatsMain/obj/Release/TempPE/Properties.Resources.Designer.cs.dll index f9a34208..fd07edb2 100644 Binary files a/Switch_FileFormatsMain/obj/Release/TempPE/Properties.Resources.Designer.cs.dll and b/Switch_FileFormatsMain/obj/Release/TempPE/Properties.Resources.Designer.cs.dll differ diff --git a/Switch_Toolbox_Library/Forms/Custom/TreeViewCustom.cs b/Switch_Toolbox_Library/Forms/Custom/TreeViewCustom.cs index 71b9ec73..c3b36eb0 100644 --- a/Switch_Toolbox_Library/Forms/Custom/TreeViewCustom.cs +++ b/Switch_Toolbox_Library/Forms/Custom/TreeViewCustom.cs @@ -127,6 +127,8 @@ namespace Switch_Toolbox.Library imgList.Images.Add("folder", Properties.Resources.skeleton); imgList.Images.Add("TextureMaterialMap", Properties.Resources.TextureMaterialMap); + imgList.Images.Add("MetaInfo", Properties.Resources.MetaInfo); + imgList.Images.Add("MaterialTranslucent", Properties.Resources.materialSphereTranslucent); imgList.Images.Add("MaterialTransparent", Properties.Resources.materialSphereTransparent); diff --git a/Switch_Toolbox_Library/Properties/Resources.Designer.cs b/Switch_Toolbox_Library/Properties/Resources.Designer.cs index e1760c04..44b157c2 100644 --- a/Switch_Toolbox_Library/Properties/Resources.Designer.cs +++ b/Switch_Toolbox_Library/Properties/Resources.Designer.cs @@ -590,6 +590,16 @@ namespace Switch_Toolbox.Library.Properties { } } + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap MetaInfo { + get { + object obj = ResourceManager.GetObject("MetaInfo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// diff --git a/Switch_Toolbox_Library/Properties/Resources.resx b/Switch_Toolbox_Library/Properties/Resources.resx index 12e4a66f..29185922 100644 --- a/Switch_Toolbox_Library/Properties/Resources.resx +++ b/Switch_Toolbox_Library/Properties/Resources.resx @@ -376,4 +376,7 @@ ..\Resources\resource_factory_info.tsv;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ..\Resources\MetaInfo.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + \ No newline at end of file diff --git a/Switch_Toolbox_Library/Resources/MetaInfo.png b/Switch_Toolbox_Library/Resources/MetaInfo.png new file mode 100644 index 00000000..43005a1a Binary files /dev/null and b/Switch_Toolbox_Library/Resources/MetaInfo.png differ diff --git a/Switch_Toolbox_Library/Switch_Toolbox_Library.csproj b/Switch_Toolbox_Library/Switch_Toolbox_Library.csproj index 78372808..508e7806 100644 --- a/Switch_Toolbox_Library/Switch_Toolbox_Library.csproj +++ b/Switch_Toolbox_Library/Switch_Toolbox_Library.csproj @@ -1201,5 +1201,8 @@ + + + \ No newline at end of file diff --git a/Toolbox/Lib/BarsLibrary.zip b/Toolbox/Lib/BarsLibrary.zip new file mode 100644 index 00000000..ee7fadd2 Binary files /dev/null and b/Toolbox/Lib/BarsLibrary.zip differ