From c6819496b272a7202eb5b161408d3623bda46daf Mon Sep 17 00:00:00 2001 From: MattNL Date: Sun, 15 Feb 2026 08:04:50 -0500 Subject: [PATCH] Fixed model support namespace typo --- PCK-Studio/Forms/Editor/CustomSkinEditor.cs | 2 +- PCK-Studio/PckStudio.csproj | 4 ++-- PCK_Studio.sln | 2 +- .../Extension/SkinExtension.cs | 2 +- .../Format/External/BedrockLegacyModel.cs | 0 .../Format/External/BedrockModel.cs | 0 .../Format/External/BlockBenchModel.cs | 0 .../Format/Internal/PSM/PSMFile.cs | 0 .../Format/Internal/PSM/PSMFileReader.cs | 0 .../Format/Internal/PSM/PSMFileWriter.cs | 0 .../GameModelImporter.cs | 2 +- .../GameModelInfo.cs | 0 .../Json/JsonDefaultModel.cs | 0 .../Json/JsonModelMetaData.cs | 0 .../ModelImporter.cs | 0 .../PckStudio.ModelSupport.csproj | 4 ++-- .../Properties/AssemblyInfo.cs | 4 ++-- .../Properties/Resources.Designer.cs | 4 ++-- .../Properties/Resources.resx | 0 .../Resources/defaultModels.json | 0 .../Resources/modelMetaData.json | 0 .../SkinModelImporter.cs | 0 .../SkinModelInfo.cs | 0 23 files changed, 12 insertions(+), 12 deletions(-) rename {PckStuido.ModelSupport => PckStudio.ModelSupport}/Extension/SkinExtension.cs (93%) rename {PckStuido.ModelSupport => PckStudio.ModelSupport}/Format/External/BedrockLegacyModel.cs (100%) rename {PckStuido.ModelSupport => PckStudio.ModelSupport}/Format/External/BedrockModel.cs (100%) rename {PckStuido.ModelSupport => PckStudio.ModelSupport}/Format/External/BlockBenchModel.cs (100%) rename {PckStuido.ModelSupport => PckStudio.ModelSupport}/Format/Internal/PSM/PSMFile.cs (100%) rename {PckStuido.ModelSupport => PckStudio.ModelSupport}/Format/Internal/PSM/PSMFileReader.cs (100%) rename {PckStuido.ModelSupport => PckStudio.ModelSupport}/Format/Internal/PSM/PSMFileWriter.cs (100%) rename {PckStuido.ModelSupport => PckStudio.ModelSupport}/GameModelImporter.cs (99%) rename {PckStuido.ModelSupport => PckStudio.ModelSupport}/GameModelInfo.cs (100%) rename {PckStuido.ModelSupport => PckStudio.ModelSupport}/Json/JsonDefaultModel.cs (100%) rename {PckStuido.ModelSupport => PckStudio.ModelSupport}/Json/JsonModelMetaData.cs (100%) rename {PckStuido.ModelSupport => PckStudio.ModelSupport}/ModelImporter.cs (100%) rename PckStuido.ModelSupport/PckStuido.ModelSupport.csproj => PckStudio.ModelSupport/PckStudio.ModelSupport.csproj (97%) rename {PckStuido.ModelSupport => PckStudio.ModelSupport}/Properties/AssemblyInfo.cs (91%) rename {PckStuido.ModelSupport => PckStudio.ModelSupport}/Properties/Resources.Designer.cs (98%) rename {PckStuido.ModelSupport => PckStudio.ModelSupport}/Properties/Resources.resx (100%) rename {PckStuido.ModelSupport => PckStudio.ModelSupport}/Resources/defaultModels.json (100%) rename {PckStuido.ModelSupport => PckStudio.ModelSupport}/Resources/modelMetaData.json (100%) rename {PckStuido.ModelSupport => PckStudio.ModelSupport}/SkinModelImporter.cs (100%) rename {PckStuido.ModelSupport => PckStudio.ModelSupport}/SkinModelInfo.cs (100%) diff --git a/PCK-Studio/Forms/Editor/CustomSkinEditor.cs b/PCK-Studio/Forms/Editor/CustomSkinEditor.cs index 8b39c40d..63d26f64 100644 --- a/PCK-Studio/Forms/Editor/CustomSkinEditor.cs +++ b/PCK-Studio/Forms/Editor/CustomSkinEditor.cs @@ -16,7 +16,7 @@ using PckStudio.Core.Skin; using PckStudio.Core.Extensions; using PckStudio.Interfaces; using PckStudio.ModelSupport; -using PckStuido.ModelSupport.Extension; +using PckStudio.ModelSupport.Extension; namespace PckStudio.Forms.Editor { diff --git a/PCK-Studio/PckStudio.csproj b/PCK-Studio/PckStudio.csproj index a19172de..f9015ed4 100644 --- a/PCK-Studio/PckStudio.csproj +++ b/PCK-Studio/PckStudio.csproj @@ -709,9 +709,9 @@ {b1e19d0f-6dd5-4d91-9b45-9818759ca8ef} PckStudio.Rendering - + {43bcacd7-5405-4499-9b45-e1435ac03c26} - PckStuido.ModelSupport + PckStudio.ModelSupport {693AEBC1-293D-4DF0-BCAE-26A1099FE7BB} diff --git a/PCK_Studio.sln b/PCK_Studio.sln index 79c1d8d3..0505032a 100644 --- a/PCK_Studio.sln +++ b/PCK_Studio.sln @@ -15,7 +15,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PckStudio.Rendering", "PckS EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PckStudio.Core", "PckStudio.Core\PckStudio.Core.csproj", "{345EABED-F0D1-4D04-B409-BABDEF747352}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PckStuido.ModelSupport", "PckStuido.ModelSupport\PckStuido.ModelSupport.csproj", "{43BCACD7-5405-4499-9B45-E1435AC03C26}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PckStudio.ModelSupport", "PckStudio.ModelSupport\PckStudio.ModelSupport.csproj", "{43BCACD7-5405-4499-9B45-E1435AC03C26}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/PckStuido.ModelSupport/Extension/SkinExtension.cs b/PckStudio.ModelSupport/Extension/SkinExtension.cs similarity index 93% rename from PckStuido.ModelSupport/Extension/SkinExtension.cs rename to PckStudio.ModelSupport/Extension/SkinExtension.cs index 3dcf6492..dcdd5527 100644 --- a/PckStuido.ModelSupport/Extension/SkinExtension.cs +++ b/PckStudio.ModelSupport/Extension/SkinExtension.cs @@ -7,7 +7,7 @@ using OMI.Formats.Model; using PckStudio.Core.Skin; using PckStudio.ModelSupport; -namespace PckStuido.ModelSupport.Extension +namespace PckStudio.ModelSupport.Extension { public static class SkinExtension { diff --git a/PckStuido.ModelSupport/Format/External/BedrockLegacyModel.cs b/PckStudio.ModelSupport/Format/External/BedrockLegacyModel.cs similarity index 100% rename from PckStuido.ModelSupport/Format/External/BedrockLegacyModel.cs rename to PckStudio.ModelSupport/Format/External/BedrockLegacyModel.cs diff --git a/PckStuido.ModelSupport/Format/External/BedrockModel.cs b/PckStudio.ModelSupport/Format/External/BedrockModel.cs similarity index 100% rename from PckStuido.ModelSupport/Format/External/BedrockModel.cs rename to PckStudio.ModelSupport/Format/External/BedrockModel.cs diff --git a/PckStuido.ModelSupport/Format/External/BlockBenchModel.cs b/PckStudio.ModelSupport/Format/External/BlockBenchModel.cs similarity index 100% rename from PckStuido.ModelSupport/Format/External/BlockBenchModel.cs rename to PckStudio.ModelSupport/Format/External/BlockBenchModel.cs diff --git a/PckStuido.ModelSupport/Format/Internal/PSM/PSMFile.cs b/PckStudio.ModelSupport/Format/Internal/PSM/PSMFile.cs similarity index 100% rename from PckStuido.ModelSupport/Format/Internal/PSM/PSMFile.cs rename to PckStudio.ModelSupport/Format/Internal/PSM/PSMFile.cs diff --git a/PckStuido.ModelSupport/Format/Internal/PSM/PSMFileReader.cs b/PckStudio.ModelSupport/Format/Internal/PSM/PSMFileReader.cs similarity index 100% rename from PckStuido.ModelSupport/Format/Internal/PSM/PSMFileReader.cs rename to PckStudio.ModelSupport/Format/Internal/PSM/PSMFileReader.cs diff --git a/PckStuido.ModelSupport/Format/Internal/PSM/PSMFileWriter.cs b/PckStudio.ModelSupport/Format/Internal/PSM/PSMFileWriter.cs similarity index 100% rename from PckStuido.ModelSupport/Format/Internal/PSM/PSMFileWriter.cs rename to PckStudio.ModelSupport/Format/Internal/PSM/PSMFileWriter.cs diff --git a/PckStuido.ModelSupport/GameModelImporter.cs b/PckStudio.ModelSupport/GameModelImporter.cs similarity index 99% rename from PckStuido.ModelSupport/GameModelImporter.cs rename to PckStudio.ModelSupport/GameModelImporter.cs index 5730d551..6119afaf 100644 --- a/PckStuido.ModelSupport/GameModelImporter.cs +++ b/PckStudio.ModelSupport/GameModelImporter.cs @@ -33,7 +33,7 @@ using PckStudio.Core.Json; using PckStudio.Core.Extensions; using PckStudio.Core; using PckStudio.ModelSupport.Format.External; -using PckStuido.ModelSupport.Properties; +using PckStudio.ModelSupport.Properties; using NamedTexture = PckStudio.Core.NamedData; namespace PckStudio.ModelSupport diff --git a/PckStuido.ModelSupport/GameModelInfo.cs b/PckStudio.ModelSupport/GameModelInfo.cs similarity index 100% rename from PckStuido.ModelSupport/GameModelInfo.cs rename to PckStudio.ModelSupport/GameModelInfo.cs diff --git a/PckStuido.ModelSupport/Json/JsonDefaultModel.cs b/PckStudio.ModelSupport/Json/JsonDefaultModel.cs similarity index 100% rename from PckStuido.ModelSupport/Json/JsonDefaultModel.cs rename to PckStudio.ModelSupport/Json/JsonDefaultModel.cs diff --git a/PckStuido.ModelSupport/Json/JsonModelMetaData.cs b/PckStudio.ModelSupport/Json/JsonModelMetaData.cs similarity index 100% rename from PckStuido.ModelSupport/Json/JsonModelMetaData.cs rename to PckStudio.ModelSupport/Json/JsonModelMetaData.cs diff --git a/PckStuido.ModelSupport/ModelImporter.cs b/PckStudio.ModelSupport/ModelImporter.cs similarity index 100% rename from PckStuido.ModelSupport/ModelImporter.cs rename to PckStudio.ModelSupport/ModelImporter.cs diff --git a/PckStuido.ModelSupport/PckStuido.ModelSupport.csproj b/PckStudio.ModelSupport/PckStudio.ModelSupport.csproj similarity index 97% rename from PckStuido.ModelSupport/PckStuido.ModelSupport.csproj rename to PckStudio.ModelSupport/PckStudio.ModelSupport.csproj index d7697c87..ce713319 100644 --- a/PckStuido.ModelSupport/PckStuido.ModelSupport.csproj +++ b/PckStudio.ModelSupport/PckStudio.ModelSupport.csproj @@ -8,8 +8,8 @@ Library NDEBUG Properties - PckStuido.ModelSupport - PckStuido.ModelSupport + PckStudio.ModelSupport + PckStudio.ModelSupport v4.8 12 512 diff --git a/PckStuido.ModelSupport/Properties/AssemblyInfo.cs b/PckStudio.ModelSupport/Properties/AssemblyInfo.cs similarity index 91% rename from PckStuido.ModelSupport/Properties/AssemblyInfo.cs rename to PckStudio.ModelSupport/Properties/AssemblyInfo.cs index 4e98a15b..fd74d36d 100644 --- a/PckStuido.ModelSupport/Properties/AssemblyInfo.cs +++ b/PckStudio.ModelSupport/Properties/AssemblyInfo.cs @@ -5,11 +5,11 @@ using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. -[assembly: AssemblyTitle("PckStuido.ModelSupport")] +[assembly: AssemblyTitle("PckStudio.ModelSupport")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("PckStuido.ModelSupport")] +[assembly: AssemblyProduct("PckStudio.ModelSupport")] [assembly: AssemblyCopyright("Copyright © 2025")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/PckStuido.ModelSupport/Properties/Resources.Designer.cs b/PckStudio.ModelSupport/Properties/Resources.Designer.cs similarity index 98% rename from PckStuido.ModelSupport/Properties/Resources.Designer.cs rename to PckStudio.ModelSupport/Properties/Resources.Designer.cs index b98cf665..55aabcdb 100644 --- a/PckStuido.ModelSupport/Properties/Resources.Designer.cs +++ b/PckStudio.ModelSupport/Properties/Resources.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace PckStuido.ModelSupport.Properties { +namespace PckStudio.ModelSupport.Properties { using System; @@ -39,7 +39,7 @@ namespace PckStuido.ModelSupport.Properties { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("PckStuido.ModelSupport.Properties.Resources", typeof(Resources).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("PckStudio.ModelSupport.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; diff --git a/PckStuido.ModelSupport/Properties/Resources.resx b/PckStudio.ModelSupport/Properties/Resources.resx similarity index 100% rename from PckStuido.ModelSupport/Properties/Resources.resx rename to PckStudio.ModelSupport/Properties/Resources.resx diff --git a/PckStuido.ModelSupport/Resources/defaultModels.json b/PckStudio.ModelSupport/Resources/defaultModels.json similarity index 100% rename from PckStuido.ModelSupport/Resources/defaultModels.json rename to PckStudio.ModelSupport/Resources/defaultModels.json diff --git a/PckStuido.ModelSupport/Resources/modelMetaData.json b/PckStudio.ModelSupport/Resources/modelMetaData.json similarity index 100% rename from PckStuido.ModelSupport/Resources/modelMetaData.json rename to PckStudio.ModelSupport/Resources/modelMetaData.json diff --git a/PckStuido.ModelSupport/SkinModelImporter.cs b/PckStudio.ModelSupport/SkinModelImporter.cs similarity index 100% rename from PckStuido.ModelSupport/SkinModelImporter.cs rename to PckStudio.ModelSupport/SkinModelImporter.cs diff --git a/PckStuido.ModelSupport/SkinModelInfo.cs b/PckStudio.ModelSupport/SkinModelInfo.cs similarity index 100% rename from PckStuido.ModelSupport/SkinModelInfo.cs rename to PckStudio.ModelSupport/SkinModelInfo.cs