├── .gitattributes ├── .github ├── ScreenshotMK.png └── ScreenshotOdyssey.png ├── .gitignore ├── EditorCore.sln ├── EditorCore ├── App.config ├── EditorCore.csproj ├── EditorForm.Designer.cs ├── EditorForm.cs ├── EditorForm.resx ├── EditorFroms │ ├── SearchResult.Designer.cs │ ├── SearchResult.cs │ └── SearchResult.resx ├── OtherForms │ ├── FrmCredits.Designer.cs │ ├── FrmCredits.cs │ ├── FrmCredits.resx │ ├── GameModuleSelect.Designer.cs │ ├── GameModuleSelect.cs │ ├── GameModuleSelect.resx │ ├── Settings.Designer.cs │ ├── Settings.cs │ └── Settings.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── packages.config ├── EditorCoreCommon ├── Common │ └── OBJ.cs ├── CustomClasses.cs ├── EditorCoreCommon.csproj ├── Forms │ ├── AddBymlPropertyDialog.Designer.cs │ ├── AddBymlPropertyDialog.cs │ ├── AddBymlPropertyDialog.resx │ ├── LoadingForm.Designer.cs │ ├── LoadingForm.cs │ └── LoadingForm.resx ├── Interfaces │ ├── EditorChild.cs │ ├── Extensions.cs │ ├── IGameSpecificModule.cs │ ├── ILevel.cs │ ├── ILevelObj.cs │ └── IPathObj.cs ├── OpenFileHandler.cs ├── Properties │ └── AssemblyInfo.cs ├── PropertyGridTypes.cs ├── UpdateCheck.cs └── packages.config ├── FileFormatPlugins ├── BfresLib │ ├── BFRES.cs │ ├── BfresConverter.cs │ ├── BfresLib.csproj │ ├── FileData.cs │ ├── FileOutput.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── BnTxx │ ├── ASTC.cs │ ├── BCn.cs │ ├── BlockLinearSwizzle.cs │ ├── BnTxx.csproj │ ├── Formats │ │ ├── BinaryTexture.cs │ │ ├── ChannelType.cs │ │ ├── InvalidSignatureException.cs │ │ ├── PatriciaTree.cs │ │ ├── PatriciaTreeNode.cs │ │ ├── Texture.cs │ │ ├── TextureFormatType.cs │ │ ├── TextureFormatVar.cs │ │ └── TextureType.cs │ ├── ISwizzle.cs │ ├── PixelDecoder.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Utilities │ │ ├── BitUtils.cs │ │ └── IOUtils.cs │ └── packages.config ├── ByamlLib │ ├── Byaml │ │ ├── ByamlException.cs │ │ ├── ByamlFile.cs │ │ ├── ByamlNodeType.cs │ │ ├── ByamlPathPoint.cs │ │ ├── ByamlViewer.cs │ │ ├── ByamlViewer.designer.cs │ │ ├── ByamlViewer.resx │ │ ├── BymlPathPointEditor.Designer.cs │ │ ├── BymlPathPointEditor.cs │ │ ├── BymlPathPointEditor.resx │ │ └── XmlConverter.cs │ ├── ByamlExt.cs │ ├── ByamlExt.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── KCLExt │ ├── BinaryDataReaderExtensions.cs │ ├── BinaryDataWriterExtensions.cs │ ├── KCL │ │ ├── KCL.cs │ │ ├── KCLColors.cs │ │ ├── KCLHeader.cs │ │ ├── KCLOctree.cs │ │ ├── Triangle.cs │ │ └── TriangleBoxIntersect.cs │ ├── KCLExt.csproj │ ├── KCLext.cs │ ├── MaterialSetForm.Designer.cs │ ├── MaterialSetForm.cs │ ├── MaterialSetForm.resx │ ├── MathUtil.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config └── SARCLib │ ├── Properties │ └── AssemblyInfo.cs │ ├── SARCExt.csproj │ ├── Sarc │ ├── SARC.cs │ ├── Yaz0Compression.cs │ └── Yaz0Exception.cs │ ├── SarcEditor.Designer.cs │ ├── SarcEditor.cs │ ├── SarcEditor.resx │ ├── SarcExt.cs │ └── packages.config ├── ModelViewer ├── ModelViewerCore.csproj ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── RendererControl.xaml ├── RendererControl.xaml.cs ├── app.config └── packages.config └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ScreenshotMK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/.github/ScreenshotMK.png -------------------------------------------------------------------------------- /.github/ScreenshotOdyssey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/.github/ScreenshotOdyssey.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/.gitignore -------------------------------------------------------------------------------- /EditorCore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCore.sln -------------------------------------------------------------------------------- /EditorCore/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCore/App.config -------------------------------------------------------------------------------- /EditorCore/EditorCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCore/EditorCore.csproj -------------------------------------------------------------------------------- /EditorCore/EditorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCore/EditorForm.Designer.cs -------------------------------------------------------------------------------- /EditorCore/EditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCore/EditorForm.cs -------------------------------------------------------------------------------- /EditorCore/EditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCore/EditorForm.resx -------------------------------------------------------------------------------- /EditorCore/EditorFroms/SearchResult.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCore/EditorFroms/SearchResult.Designer.cs -------------------------------------------------------------------------------- /EditorCore/EditorFroms/SearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCore/EditorFroms/SearchResult.cs -------------------------------------------------------------------------------- /EditorCore/EditorFroms/SearchResult.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCore/EditorFroms/SearchResult.resx -------------------------------------------------------------------------------- /EditorCore/OtherForms/FrmCredits.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCore/OtherForms/FrmCredits.Designer.cs -------------------------------------------------------------------------------- /EditorCore/OtherForms/FrmCredits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCore/OtherForms/FrmCredits.cs -------------------------------------------------------------------------------- /EditorCore/OtherForms/FrmCredits.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCore/OtherForms/FrmCredits.resx -------------------------------------------------------------------------------- /EditorCore/OtherForms/GameModuleSelect.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCore/OtherForms/GameModuleSelect.Designer.cs -------------------------------------------------------------------------------- /EditorCore/OtherForms/GameModuleSelect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCore/OtherForms/GameModuleSelect.cs -------------------------------------------------------------------------------- /EditorCore/OtherForms/GameModuleSelect.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCore/OtherForms/GameModuleSelect.resx -------------------------------------------------------------------------------- /EditorCore/OtherForms/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCore/OtherForms/Settings.Designer.cs -------------------------------------------------------------------------------- /EditorCore/OtherForms/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCore/OtherForms/Settings.cs -------------------------------------------------------------------------------- /EditorCore/OtherForms/Settings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCore/OtherForms/Settings.resx -------------------------------------------------------------------------------- /EditorCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCore/Program.cs -------------------------------------------------------------------------------- /EditorCore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCore/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EditorCore/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCore/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /EditorCore/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCore/Properties/Resources.resx -------------------------------------------------------------------------------- /EditorCore/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCore/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /EditorCore/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCore/Properties/Settings.settings -------------------------------------------------------------------------------- /EditorCore/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCore/packages.config -------------------------------------------------------------------------------- /EditorCoreCommon/Common/OBJ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCoreCommon/Common/OBJ.cs -------------------------------------------------------------------------------- /EditorCoreCommon/CustomClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCoreCommon/CustomClasses.cs -------------------------------------------------------------------------------- /EditorCoreCommon/EditorCoreCommon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCoreCommon/EditorCoreCommon.csproj -------------------------------------------------------------------------------- /EditorCoreCommon/Forms/AddBymlPropertyDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCoreCommon/Forms/AddBymlPropertyDialog.Designer.cs -------------------------------------------------------------------------------- /EditorCoreCommon/Forms/AddBymlPropertyDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCoreCommon/Forms/AddBymlPropertyDialog.cs -------------------------------------------------------------------------------- /EditorCoreCommon/Forms/AddBymlPropertyDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCoreCommon/Forms/AddBymlPropertyDialog.resx -------------------------------------------------------------------------------- /EditorCoreCommon/Forms/LoadingForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCoreCommon/Forms/LoadingForm.Designer.cs -------------------------------------------------------------------------------- /EditorCoreCommon/Forms/LoadingForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCoreCommon/Forms/LoadingForm.cs -------------------------------------------------------------------------------- /EditorCoreCommon/Forms/LoadingForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCoreCommon/Forms/LoadingForm.resx -------------------------------------------------------------------------------- /EditorCoreCommon/Interfaces/EditorChild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCoreCommon/Interfaces/EditorChild.cs -------------------------------------------------------------------------------- /EditorCoreCommon/Interfaces/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCoreCommon/Interfaces/Extensions.cs -------------------------------------------------------------------------------- /EditorCoreCommon/Interfaces/IGameSpecificModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCoreCommon/Interfaces/IGameSpecificModule.cs -------------------------------------------------------------------------------- /EditorCoreCommon/Interfaces/ILevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCoreCommon/Interfaces/ILevel.cs -------------------------------------------------------------------------------- /EditorCoreCommon/Interfaces/ILevelObj.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCoreCommon/Interfaces/ILevelObj.cs -------------------------------------------------------------------------------- /EditorCoreCommon/Interfaces/IPathObj.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCoreCommon/Interfaces/IPathObj.cs -------------------------------------------------------------------------------- /EditorCoreCommon/OpenFileHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCoreCommon/OpenFileHandler.cs -------------------------------------------------------------------------------- /EditorCoreCommon/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCoreCommon/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EditorCoreCommon/PropertyGridTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCoreCommon/PropertyGridTypes.cs -------------------------------------------------------------------------------- /EditorCoreCommon/UpdateCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCoreCommon/UpdateCheck.cs -------------------------------------------------------------------------------- /EditorCoreCommon/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/EditorCoreCommon/packages.config -------------------------------------------------------------------------------- /FileFormatPlugins/BfresLib/BFRES.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/BfresLib/BFRES.cs -------------------------------------------------------------------------------- /FileFormatPlugins/BfresLib/BfresConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/BfresLib/BfresConverter.cs -------------------------------------------------------------------------------- /FileFormatPlugins/BfresLib/BfresLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/BfresLib/BfresLib.csproj -------------------------------------------------------------------------------- /FileFormatPlugins/BfresLib/FileData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/BfresLib/FileData.cs -------------------------------------------------------------------------------- /FileFormatPlugins/BfresLib/FileOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/BfresLib/FileOutput.cs -------------------------------------------------------------------------------- /FileFormatPlugins/BfresLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/BfresLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FileFormatPlugins/BfresLib/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/BfresLib/packages.config -------------------------------------------------------------------------------- /FileFormatPlugins/BnTxx/ASTC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/BnTxx/ASTC.cs -------------------------------------------------------------------------------- /FileFormatPlugins/BnTxx/BCn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/BnTxx/BCn.cs -------------------------------------------------------------------------------- /FileFormatPlugins/BnTxx/BlockLinearSwizzle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/BnTxx/BlockLinearSwizzle.cs -------------------------------------------------------------------------------- /FileFormatPlugins/BnTxx/BnTxx.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/BnTxx/BnTxx.csproj -------------------------------------------------------------------------------- /FileFormatPlugins/BnTxx/Formats/BinaryTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/BnTxx/Formats/BinaryTexture.cs -------------------------------------------------------------------------------- /FileFormatPlugins/BnTxx/Formats/ChannelType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/BnTxx/Formats/ChannelType.cs -------------------------------------------------------------------------------- /FileFormatPlugins/BnTxx/Formats/InvalidSignatureException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/BnTxx/Formats/InvalidSignatureException.cs -------------------------------------------------------------------------------- /FileFormatPlugins/BnTxx/Formats/PatriciaTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/BnTxx/Formats/PatriciaTree.cs -------------------------------------------------------------------------------- /FileFormatPlugins/BnTxx/Formats/PatriciaTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/BnTxx/Formats/PatriciaTreeNode.cs -------------------------------------------------------------------------------- /FileFormatPlugins/BnTxx/Formats/Texture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/BnTxx/Formats/Texture.cs -------------------------------------------------------------------------------- /FileFormatPlugins/BnTxx/Formats/TextureFormatType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/BnTxx/Formats/TextureFormatType.cs -------------------------------------------------------------------------------- /FileFormatPlugins/BnTxx/Formats/TextureFormatVar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/BnTxx/Formats/TextureFormatVar.cs -------------------------------------------------------------------------------- /FileFormatPlugins/BnTxx/Formats/TextureType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/BnTxx/Formats/TextureType.cs -------------------------------------------------------------------------------- /FileFormatPlugins/BnTxx/ISwizzle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/BnTxx/ISwizzle.cs -------------------------------------------------------------------------------- /FileFormatPlugins/BnTxx/PixelDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/BnTxx/PixelDecoder.cs -------------------------------------------------------------------------------- /FileFormatPlugins/BnTxx/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/BnTxx/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FileFormatPlugins/BnTxx/Utilities/BitUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/BnTxx/Utilities/BitUtils.cs -------------------------------------------------------------------------------- /FileFormatPlugins/BnTxx/Utilities/IOUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/BnTxx/Utilities/IOUtils.cs -------------------------------------------------------------------------------- /FileFormatPlugins/BnTxx/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/BnTxx/packages.config -------------------------------------------------------------------------------- /FileFormatPlugins/ByamlLib/Byaml/ByamlException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/ByamlLib/Byaml/ByamlException.cs -------------------------------------------------------------------------------- /FileFormatPlugins/ByamlLib/Byaml/ByamlFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/ByamlLib/Byaml/ByamlFile.cs -------------------------------------------------------------------------------- /FileFormatPlugins/ByamlLib/Byaml/ByamlNodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/ByamlLib/Byaml/ByamlNodeType.cs -------------------------------------------------------------------------------- /FileFormatPlugins/ByamlLib/Byaml/ByamlPathPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/ByamlLib/Byaml/ByamlPathPoint.cs -------------------------------------------------------------------------------- /FileFormatPlugins/ByamlLib/Byaml/ByamlViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/ByamlLib/Byaml/ByamlViewer.cs -------------------------------------------------------------------------------- /FileFormatPlugins/ByamlLib/Byaml/ByamlViewer.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/ByamlLib/Byaml/ByamlViewer.designer.cs -------------------------------------------------------------------------------- /FileFormatPlugins/ByamlLib/Byaml/ByamlViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/ByamlLib/Byaml/ByamlViewer.resx -------------------------------------------------------------------------------- /FileFormatPlugins/ByamlLib/Byaml/BymlPathPointEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/ByamlLib/Byaml/BymlPathPointEditor.Designer.cs -------------------------------------------------------------------------------- /FileFormatPlugins/ByamlLib/Byaml/BymlPathPointEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/ByamlLib/Byaml/BymlPathPointEditor.cs -------------------------------------------------------------------------------- /FileFormatPlugins/ByamlLib/Byaml/BymlPathPointEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/ByamlLib/Byaml/BymlPathPointEditor.resx -------------------------------------------------------------------------------- /FileFormatPlugins/ByamlLib/Byaml/XmlConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/ByamlLib/Byaml/XmlConverter.cs -------------------------------------------------------------------------------- /FileFormatPlugins/ByamlLib/ByamlExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/ByamlLib/ByamlExt.cs -------------------------------------------------------------------------------- /FileFormatPlugins/ByamlLib/ByamlExt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/ByamlLib/ByamlExt.csproj -------------------------------------------------------------------------------- /FileFormatPlugins/ByamlLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/ByamlLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FileFormatPlugins/ByamlLib/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/ByamlLib/packages.config -------------------------------------------------------------------------------- /FileFormatPlugins/KCLExt/BinaryDataReaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/KCLExt/BinaryDataReaderExtensions.cs -------------------------------------------------------------------------------- /FileFormatPlugins/KCLExt/BinaryDataWriterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/KCLExt/BinaryDataWriterExtensions.cs -------------------------------------------------------------------------------- /FileFormatPlugins/KCLExt/KCL/KCL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/KCLExt/KCL/KCL.cs -------------------------------------------------------------------------------- /FileFormatPlugins/KCLExt/KCL/KCLColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/KCLExt/KCL/KCLColors.cs -------------------------------------------------------------------------------- /FileFormatPlugins/KCLExt/KCL/KCLHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/KCLExt/KCL/KCLHeader.cs -------------------------------------------------------------------------------- /FileFormatPlugins/KCLExt/KCL/KCLOctree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/KCLExt/KCL/KCLOctree.cs -------------------------------------------------------------------------------- /FileFormatPlugins/KCLExt/KCL/Triangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/KCLExt/KCL/Triangle.cs -------------------------------------------------------------------------------- /FileFormatPlugins/KCLExt/KCL/TriangleBoxIntersect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/KCLExt/KCL/TriangleBoxIntersect.cs -------------------------------------------------------------------------------- /FileFormatPlugins/KCLExt/KCLExt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/KCLExt/KCLExt.csproj -------------------------------------------------------------------------------- /FileFormatPlugins/KCLExt/KCLext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/KCLExt/KCLext.cs -------------------------------------------------------------------------------- /FileFormatPlugins/KCLExt/MaterialSetForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/KCLExt/MaterialSetForm.Designer.cs -------------------------------------------------------------------------------- /FileFormatPlugins/KCLExt/MaterialSetForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/KCLExt/MaterialSetForm.cs -------------------------------------------------------------------------------- /FileFormatPlugins/KCLExt/MaterialSetForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/KCLExt/MaterialSetForm.resx -------------------------------------------------------------------------------- /FileFormatPlugins/KCLExt/MathUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/KCLExt/MathUtil.cs -------------------------------------------------------------------------------- /FileFormatPlugins/KCLExt/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/KCLExt/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FileFormatPlugins/KCLExt/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/KCLExt/packages.config -------------------------------------------------------------------------------- /FileFormatPlugins/SARCLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/SARCLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FileFormatPlugins/SARCLib/SARCExt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/SARCLib/SARCExt.csproj -------------------------------------------------------------------------------- /FileFormatPlugins/SARCLib/Sarc/SARC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/SARCLib/Sarc/SARC.cs -------------------------------------------------------------------------------- /FileFormatPlugins/SARCLib/Sarc/Yaz0Compression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/SARCLib/Sarc/Yaz0Compression.cs -------------------------------------------------------------------------------- /FileFormatPlugins/SARCLib/Sarc/Yaz0Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/SARCLib/Sarc/Yaz0Exception.cs -------------------------------------------------------------------------------- /FileFormatPlugins/SARCLib/SarcEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/SARCLib/SarcEditor.Designer.cs -------------------------------------------------------------------------------- /FileFormatPlugins/SARCLib/SarcEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/SARCLib/SarcEditor.cs -------------------------------------------------------------------------------- /FileFormatPlugins/SARCLib/SarcEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/SARCLib/SarcEditor.resx -------------------------------------------------------------------------------- /FileFormatPlugins/SARCLib/SarcExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/SARCLib/SarcExt.cs -------------------------------------------------------------------------------- /FileFormatPlugins/SARCLib/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/FileFormatPlugins/SARCLib/packages.config -------------------------------------------------------------------------------- /ModelViewer/ModelViewerCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/ModelViewer/ModelViewerCore.csproj -------------------------------------------------------------------------------- /ModelViewer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/ModelViewer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ModelViewer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/ModelViewer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ModelViewer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/ModelViewer/Properties/Resources.resx -------------------------------------------------------------------------------- /ModelViewer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/ModelViewer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ModelViewer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/ModelViewer/Properties/Settings.settings -------------------------------------------------------------------------------- /ModelViewer/RendererControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/ModelViewer/RendererControl.xaml -------------------------------------------------------------------------------- /ModelViewer/RendererControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/ModelViewer/RendererControl.xaml.cs -------------------------------------------------------------------------------- /ModelViewer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/ModelViewer/app.config -------------------------------------------------------------------------------- /ModelViewer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/ModelViewer/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/EditorCore/HEAD/README.md --------------------------------------------------------------------------------