├── .editorconfig ├── .gitattributes ├── .gitignore ├── README.md ├── SCTools.sln ├── Test ├── Program.cs ├── Test.csproj └── libzstd.dll ├── desktop.ini └── src └── SCEditor ├── App.config ├── Compression ├── LzhamWrapper │ ├── CompressionHandle.cs │ ├── CompressionParameters.cs │ ├── DecompressionHandle.cs │ ├── DecompressionParameters.cs │ ├── Enums │ │ ├── CompressStatus.cs │ │ ├── CompressionFlag.cs │ │ ├── CompressionLevel.cs │ │ ├── DecompressStatus.cs │ │ ├── DecompressionFlag.cs │ │ ├── Flush.cs │ │ └── TableUpdateRate.cs │ ├── Lzham.cs │ ├── LzhamConsts.cs │ ├── LzhamInterop.cs │ └── LzhamStream.cs ├── Lzma.cs └── zstandard.cs ├── ExtensionMethods.cs ├── Features ├── ImportExportData.cs ├── ImportSCData.cs ├── blobCounter.cs ├── customFunctions.cs ├── fixChunksPoints.cs └── renderToPictureBox.cs ├── Helpers ├── Prefixed.cs ├── Rect.cs └── Utils.cs ├── MainForm.cs ├── MainForm.designer.cs ├── MainForm.resx ├── Program.cs ├── Prompts ├── ChooseTextureType.Designer.cs ├── ChooseTextureType.cs ├── ChooseTextureType.resx ├── CloneExport.Designer.cs ├── CloneExport.cs ├── CloneExport.resx ├── ReplaceTexture.Designer.cs ├── ReplaceTexture.cs ├── ReplaceTexture.resx ├── SearchExport.Designer.cs ├── SearchExport.cs ├── SearchExport.resx ├── createExportDialog.Designer.cs ├── createExportDialog.cs ├── createExportDialog.resx ├── createTextureDialog.Designer.cs ├── createTextureDialog.cs ├── createTextureDialog.resx ├── editCharacter.Designer.cs ├── editCharacter.cs ├── editCharacter.resx ├── editChildrenData.Designer.cs ├── editChildrenData.cs ├── editChildrenData.resx ├── editColors.Designer.cs ├── editColors.cs ├── editColors.resx ├── editMatrixes.Designer.cs ├── editMatrixes.cs ├── editMatrixes.resx ├── frameEditDialog.Designer.cs ├── frameEditDialog.cs ├── frameEditDialog.resx ├── inputDataDialog.Designer.cs ├── inputDataDialog.cs ├── inputDataDialog.resx ├── scMergeSelection.Designer.cs ├── scMergeSelection.cs └── scMergeSelection.resx ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Resources ├── $this.Icon.ico ├── Icon_Entry_5_2_2_2_2_2_2_3.png ├── PP.png └── a-logo light.png ├── SCEditor.csproj ├── Sc ├── Export.cs ├── Loaders │ └── ScLoader7.cs ├── ScData.cs ├── ScFile.cs ├── ScFormatVersion.cs └── ScLoader.cs ├── ScOld ├── ColorTransform.cs ├── Export.cs ├── ImageDecoders │ └── AstcDecoder.cs ├── ImageEncoder │ └── AstcEncoder.cs ├── ImageFormats │ ├── IImageFormat.cs │ └── ScImage.cs ├── Ktx │ ├── KtxBitFiddling.cs │ ├── KtxCommon.cs │ ├── KtxCreator.cs │ ├── KtxErrors.cs │ ├── KtxHeader.cs │ ├── KtxLoader.cs │ ├── KtxSharp.csproj │ ├── KtxStructure.cs │ ├── KtxTextureData.cs │ ├── KtxValidators.cs │ ├── KtxWriter.cs │ ├── MetadataValue.cs │ └── VersionInfo.cs ├── MovieClip.cs ├── MovieClipFrame.cs ├── MovieClipModifier.cs ├── RenderingOptions.cs ├── ScFile.cs ├── ScObject.cs ├── Shape.cs ├── ShapeChunk.cs ├── TextField.cs ├── Texture.cs └── exportType.cs ├── git ├── a-logo dark.png ├── edit character.gif ├── edit timeline.gif ├── export animation.gif └── import_combine.gif ├── libs ├── Accord.Imaging.deps.json ├── Accord.Imaging.dll ├── Accord.Math.Core.dll ├── Accord.Math.dll ├── Accord.Statistics.dll ├── Accord.dll ├── astc-codec.dll ├── astcenc-avx2.exe ├── astcenc-sse2.exe └── astcenc-sse4.1.exe ├── logo_dark.ico └── lzham.dll /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/README.md -------------------------------------------------------------------------------- /SCTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/SCTools.sln -------------------------------------------------------------------------------- /Test/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/Test/Program.cs -------------------------------------------------------------------------------- /Test/Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/Test/Test.csproj -------------------------------------------------------------------------------- /Test/libzstd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/Test/libzstd.dll -------------------------------------------------------------------------------- /desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/desktop.ini -------------------------------------------------------------------------------- /src/SCEditor/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/App.config -------------------------------------------------------------------------------- /src/SCEditor/Compression/LzhamWrapper/CompressionHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Compression/LzhamWrapper/CompressionHandle.cs -------------------------------------------------------------------------------- /src/SCEditor/Compression/LzhamWrapper/CompressionParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Compression/LzhamWrapper/CompressionParameters.cs -------------------------------------------------------------------------------- /src/SCEditor/Compression/LzhamWrapper/DecompressionHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Compression/LzhamWrapper/DecompressionHandle.cs -------------------------------------------------------------------------------- /src/SCEditor/Compression/LzhamWrapper/DecompressionParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Compression/LzhamWrapper/DecompressionParameters.cs -------------------------------------------------------------------------------- /src/SCEditor/Compression/LzhamWrapper/Enums/CompressStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Compression/LzhamWrapper/Enums/CompressStatus.cs -------------------------------------------------------------------------------- /src/SCEditor/Compression/LzhamWrapper/Enums/CompressionFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Compression/LzhamWrapper/Enums/CompressionFlag.cs -------------------------------------------------------------------------------- /src/SCEditor/Compression/LzhamWrapper/Enums/CompressionLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Compression/LzhamWrapper/Enums/CompressionLevel.cs -------------------------------------------------------------------------------- /src/SCEditor/Compression/LzhamWrapper/Enums/DecompressStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Compression/LzhamWrapper/Enums/DecompressStatus.cs -------------------------------------------------------------------------------- /src/SCEditor/Compression/LzhamWrapper/Enums/DecompressionFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Compression/LzhamWrapper/Enums/DecompressionFlag.cs -------------------------------------------------------------------------------- /src/SCEditor/Compression/LzhamWrapper/Enums/Flush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Compression/LzhamWrapper/Enums/Flush.cs -------------------------------------------------------------------------------- /src/SCEditor/Compression/LzhamWrapper/Enums/TableUpdateRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Compression/LzhamWrapper/Enums/TableUpdateRate.cs -------------------------------------------------------------------------------- /src/SCEditor/Compression/LzhamWrapper/Lzham.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Compression/LzhamWrapper/Lzham.cs -------------------------------------------------------------------------------- /src/SCEditor/Compression/LzhamWrapper/LzhamConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Compression/LzhamWrapper/LzhamConsts.cs -------------------------------------------------------------------------------- /src/SCEditor/Compression/LzhamWrapper/LzhamInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Compression/LzhamWrapper/LzhamInterop.cs -------------------------------------------------------------------------------- /src/SCEditor/Compression/LzhamWrapper/LzhamStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Compression/LzhamWrapper/LzhamStream.cs -------------------------------------------------------------------------------- /src/SCEditor/Compression/Lzma.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Compression/Lzma.cs -------------------------------------------------------------------------------- /src/SCEditor/Compression/zstandard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Compression/zstandard.cs -------------------------------------------------------------------------------- /src/SCEditor/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ExtensionMethods.cs -------------------------------------------------------------------------------- /src/SCEditor/Features/ImportExportData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Features/ImportExportData.cs -------------------------------------------------------------------------------- /src/SCEditor/Features/ImportSCData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Features/ImportSCData.cs -------------------------------------------------------------------------------- /src/SCEditor/Features/blobCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Features/blobCounter.cs -------------------------------------------------------------------------------- /src/SCEditor/Features/customFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Features/customFunctions.cs -------------------------------------------------------------------------------- /src/SCEditor/Features/fixChunksPoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Features/fixChunksPoints.cs -------------------------------------------------------------------------------- /src/SCEditor/Features/renderToPictureBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Features/renderToPictureBox.cs -------------------------------------------------------------------------------- /src/SCEditor/Helpers/Prefixed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Helpers/Prefixed.cs -------------------------------------------------------------------------------- /src/SCEditor/Helpers/Rect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Helpers/Rect.cs -------------------------------------------------------------------------------- /src/SCEditor/Helpers/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Helpers/Utils.cs -------------------------------------------------------------------------------- /src/SCEditor/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/MainForm.cs -------------------------------------------------------------------------------- /src/SCEditor/MainForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/MainForm.designer.cs -------------------------------------------------------------------------------- /src/SCEditor/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/MainForm.resx -------------------------------------------------------------------------------- /src/SCEditor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Program.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/ChooseTextureType.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/ChooseTextureType.Designer.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/ChooseTextureType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/ChooseTextureType.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/ChooseTextureType.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/ChooseTextureType.resx -------------------------------------------------------------------------------- /src/SCEditor/Prompts/CloneExport.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/CloneExport.Designer.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/CloneExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/CloneExport.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/CloneExport.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/CloneExport.resx -------------------------------------------------------------------------------- /src/SCEditor/Prompts/ReplaceTexture.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/ReplaceTexture.Designer.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/ReplaceTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/ReplaceTexture.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/ReplaceTexture.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/ReplaceTexture.resx -------------------------------------------------------------------------------- /src/SCEditor/Prompts/SearchExport.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/SearchExport.Designer.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/SearchExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/SearchExport.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/SearchExport.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/SearchExport.resx -------------------------------------------------------------------------------- /src/SCEditor/Prompts/createExportDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/createExportDialog.Designer.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/createExportDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/createExportDialog.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/createExportDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/createExportDialog.resx -------------------------------------------------------------------------------- /src/SCEditor/Prompts/createTextureDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/createTextureDialog.Designer.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/createTextureDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/createTextureDialog.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/createTextureDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/createTextureDialog.resx -------------------------------------------------------------------------------- /src/SCEditor/Prompts/editCharacter.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/editCharacter.Designer.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/editCharacter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/editCharacter.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/editCharacter.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/editCharacter.resx -------------------------------------------------------------------------------- /src/SCEditor/Prompts/editChildrenData.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/editChildrenData.Designer.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/editChildrenData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/editChildrenData.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/editChildrenData.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/editChildrenData.resx -------------------------------------------------------------------------------- /src/SCEditor/Prompts/editColors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/editColors.Designer.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/editColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/editColors.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/editColors.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/editColors.resx -------------------------------------------------------------------------------- /src/SCEditor/Prompts/editMatrixes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/editMatrixes.Designer.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/editMatrixes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/editMatrixes.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/editMatrixes.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/editMatrixes.resx -------------------------------------------------------------------------------- /src/SCEditor/Prompts/frameEditDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/frameEditDialog.Designer.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/frameEditDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/frameEditDialog.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/frameEditDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/frameEditDialog.resx -------------------------------------------------------------------------------- /src/SCEditor/Prompts/inputDataDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/inputDataDialog.Designer.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/inputDataDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/inputDataDialog.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/inputDataDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/inputDataDialog.resx -------------------------------------------------------------------------------- /src/SCEditor/Prompts/scMergeSelection.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/scMergeSelection.Designer.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/scMergeSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/scMergeSelection.cs -------------------------------------------------------------------------------- /src/SCEditor/Prompts/scMergeSelection.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Prompts/scMergeSelection.resx -------------------------------------------------------------------------------- /src/SCEditor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SCEditor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/SCEditor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Properties/Resources.resx -------------------------------------------------------------------------------- /src/SCEditor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/SCEditor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Properties/Settings.settings -------------------------------------------------------------------------------- /src/SCEditor/Resources/$this.Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Resources/$this.Icon.ico -------------------------------------------------------------------------------- /src/SCEditor/Resources/Icon_Entry_5_2_2_2_2_2_2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Resources/Icon_Entry_5_2_2_2_2_2_2_3.png -------------------------------------------------------------------------------- /src/SCEditor/Resources/PP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Resources/PP.png -------------------------------------------------------------------------------- /src/SCEditor/Resources/a-logo light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Resources/a-logo light.png -------------------------------------------------------------------------------- /src/SCEditor/SCEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/SCEditor.csproj -------------------------------------------------------------------------------- /src/SCEditor/Sc/Export.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Sc/Export.cs -------------------------------------------------------------------------------- /src/SCEditor/Sc/Loaders/ScLoader7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Sc/Loaders/ScLoader7.cs -------------------------------------------------------------------------------- /src/SCEditor/Sc/ScData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Sc/ScData.cs -------------------------------------------------------------------------------- /src/SCEditor/Sc/ScFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Sc/ScFile.cs -------------------------------------------------------------------------------- /src/SCEditor/Sc/ScFormatVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Sc/ScFormatVersion.cs -------------------------------------------------------------------------------- /src/SCEditor/Sc/ScLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/Sc/ScLoader.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/ColorTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/ColorTransform.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/Export.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/Export.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/ImageDecoders/AstcDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/ImageDecoders/AstcDecoder.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/ImageEncoder/AstcEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/ImageEncoder/AstcEncoder.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/ImageFormats/IImageFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/ImageFormats/IImageFormat.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/ImageFormats/ScImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/ImageFormats/ScImage.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/Ktx/KtxBitFiddling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/Ktx/KtxBitFiddling.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/Ktx/KtxCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/Ktx/KtxCommon.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/Ktx/KtxCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/Ktx/KtxCreator.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/Ktx/KtxErrors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/Ktx/KtxErrors.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/Ktx/KtxHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/Ktx/KtxHeader.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/Ktx/KtxLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/Ktx/KtxLoader.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/Ktx/KtxSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/Ktx/KtxSharp.csproj -------------------------------------------------------------------------------- /src/SCEditor/ScOld/Ktx/KtxStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/Ktx/KtxStructure.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/Ktx/KtxTextureData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/Ktx/KtxTextureData.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/Ktx/KtxValidators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/Ktx/KtxValidators.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/Ktx/KtxWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/Ktx/KtxWriter.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/Ktx/MetadataValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/Ktx/MetadataValue.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/Ktx/VersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/Ktx/VersionInfo.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/MovieClip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/MovieClip.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/MovieClipFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/MovieClipFrame.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/MovieClipModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/MovieClipModifier.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/RenderingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/RenderingOptions.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/ScFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/ScFile.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/ScObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/ScObject.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/Shape.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/ShapeChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/ShapeChunk.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/TextField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/TextField.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/Texture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/Texture.cs -------------------------------------------------------------------------------- /src/SCEditor/ScOld/exportType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/ScOld/exportType.cs -------------------------------------------------------------------------------- /src/SCEditor/git/a-logo dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/git/a-logo dark.png -------------------------------------------------------------------------------- /src/SCEditor/git/edit character.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/git/edit character.gif -------------------------------------------------------------------------------- /src/SCEditor/git/edit timeline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/git/edit timeline.gif -------------------------------------------------------------------------------- /src/SCEditor/git/export animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/git/export animation.gif -------------------------------------------------------------------------------- /src/SCEditor/git/import_combine.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/git/import_combine.gif -------------------------------------------------------------------------------- /src/SCEditor/libs/Accord.Imaging.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/libs/Accord.Imaging.deps.json -------------------------------------------------------------------------------- /src/SCEditor/libs/Accord.Imaging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/libs/Accord.Imaging.dll -------------------------------------------------------------------------------- /src/SCEditor/libs/Accord.Math.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/libs/Accord.Math.Core.dll -------------------------------------------------------------------------------- /src/SCEditor/libs/Accord.Math.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/libs/Accord.Math.dll -------------------------------------------------------------------------------- /src/SCEditor/libs/Accord.Statistics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/libs/Accord.Statistics.dll -------------------------------------------------------------------------------- /src/SCEditor/libs/Accord.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/libs/Accord.dll -------------------------------------------------------------------------------- /src/SCEditor/libs/astc-codec.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/libs/astc-codec.dll -------------------------------------------------------------------------------- /src/SCEditor/libs/astcenc-avx2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/libs/astcenc-avx2.exe -------------------------------------------------------------------------------- /src/SCEditor/libs/astcenc-sse2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/libs/astcenc-sse2.exe -------------------------------------------------------------------------------- /src/SCEditor/libs/astcenc-sse4.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/libs/astcenc-sse4.1.exe -------------------------------------------------------------------------------- /src/SCEditor/logo_dark.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/logo_dark.ico -------------------------------------------------------------------------------- /src/SCEditor/lzham.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicLand/SCEditor/HEAD/src/SCEditor/lzham.dll --------------------------------------------------------------------------------