├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── Assets ├── AutoModderGraphic.png └── gridmarkerupdate.png ├── BLMapCheck ├── BLMapCheck.csproj ├── BLMapChecker.cs ├── BeatmapScanner │ ├── CriteriaCheck.cs │ ├── CriteriaCheck │ │ ├── Criteria │ │ │ ├── DiffCrit.cs │ │ │ ├── InfoCrit.cs │ │ │ └── Recommended.cs │ │ ├── CriteriaCheckManager.cs │ │ ├── Difficulty │ │ │ ├── AngleOffset.cs │ │ │ ├── Chains.cs │ │ │ ├── ColdEnd.cs │ │ │ ├── DifficultyLabelName.cs │ │ │ ├── DifficultyLabelSize.cs │ │ │ ├── Flick.cs │ │ │ ├── FusedObject.cs │ │ │ ├── Handclap.cs │ │ │ ├── Hitbox.cs │ │ │ ├── HotStart.cs │ │ │ ├── Inline.cs │ │ │ ├── Lights.cs │ │ │ ├── Loloppe.cs │ │ │ ├── NJS.cs │ │ │ ├── Obstacle.cs │ │ │ ├── Offbeat.cs │ │ │ ├── Outside.cs │ │ │ ├── Parity.cs │ │ │ ├── ProlongedSwing.cs │ │ │ ├── Requirements.cs │ │ │ ├── RollingEBPM.cs │ │ │ ├── Shrado.cs │ │ │ ├── Slider.cs │ │ │ ├── SongDuration.cs │ │ │ ├── SwingPath.cs │ │ │ └── VisionBlock.cs │ │ └── Info │ │ │ ├── BPM.cs │ │ │ ├── Creator.cs │ │ │ ├── DiffOrdering.cs │ │ │ ├── Offset.cs │ │ │ ├── SongAuthor.cs │ │ │ ├── SongName.cs │ │ │ ├── SongPreview.cs │ │ │ └── SubName.cs │ ├── MapCheck │ │ ├── Parity.cs │ │ └── Swing.cs │ └── ProfanityFilter │ │ ├── AllowList.cs │ │ ├── Interfaces │ │ ├── IAllowList.cs │ │ └── IProfanityFilter.cs │ │ ├── ProfanityBase.cs │ │ ├── ProfanityFilter.cs │ │ └── ProfanityList.cs ├── Classes │ ├── ChroMapper │ │ └── SpawnParameterHelper.cs │ ├── Helper │ │ └── Helper.cs │ ├── Results │ │ ├── CheckResult.cs │ │ └── CheckResults.cs │ └── Unity │ │ ├── Vector2.cs │ │ └── Vector3.cs ├── Configs │ └── Config.cs ├── Properties │ └── AssemblyInfo.cs ├── dll │ ├── Analyzer.dll │ ├── JoshaParity.dll │ ├── NVorbis.dll │ ├── Parser.dll │ └── System.Runtime.CompilerServices.Unsafe.dll └── packages.config ├── ChroMapper-LightModding.sln ├── ChroMapper-LightModding ├── Assets │ └── Icon.png ├── ChroMapper-LightModding.csproj ├── Export │ └── Exporter.cs ├── FodyWeavers.xml ├── Helpers │ ├── AutocheckHelper.cs │ ├── FileHelper.cs │ ├── GridMarkerHelper.cs │ └── OutlineHelper.cs ├── Licenses │ ├── LICENSE BeatSaber-MapCheck.txt │ ├── LICENSE JoshaParity.txt │ └── LICENSE Newtonsoft.Json.txt ├── Models │ ├── Comment.cs │ ├── DifficultyReview.cs │ ├── MapsetReview.cs │ └── SelectedObject.cs ├── Plugin.cs ├── Properties │ └── AssemblyInfo.cs ├── UI │ ├── EditorUI.cs │ ├── SongInfoUI.cs │ └── UIHelper.cs ├── dll │ └── Newtonsoft.Json.dll ├── manifest.json └── packages.config ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/AutoModderGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/Assets/AutoModderGraphic.png -------------------------------------------------------------------------------- /Assets/gridmarkerupdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/Assets/gridmarkerupdate.png -------------------------------------------------------------------------------- /BLMapCheck/BLMapCheck.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BLMapCheck.csproj -------------------------------------------------------------------------------- /BLMapCheck/BLMapChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BLMapChecker.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Criteria/DiffCrit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Criteria/DiffCrit.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Criteria/InfoCrit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Criteria/InfoCrit.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Criteria/Recommended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Criteria/Recommended.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/CriteriaCheckManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/CriteriaCheckManager.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/AngleOffset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/AngleOffset.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Chains.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Chains.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/ColdEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/ColdEnd.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/DifficultyLabelName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/DifficultyLabelName.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/DifficultyLabelSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/DifficultyLabelSize.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Flick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Flick.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/FusedObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/FusedObject.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Handclap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Handclap.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Hitbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Hitbox.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/HotStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/HotStart.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Inline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Inline.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Lights.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Lights.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Loloppe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Loloppe.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/NJS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/NJS.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Obstacle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Obstacle.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Offbeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Offbeat.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Outside.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Outside.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Parity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Parity.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/ProlongedSwing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/ProlongedSwing.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Requirements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Requirements.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/RollingEBPM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/RollingEBPM.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Shrado.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Shrado.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Slider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/Slider.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/SongDuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/SongDuration.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/SwingPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/SwingPath.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/VisionBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Difficulty/VisionBlock.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Info/BPM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Info/BPM.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Info/Creator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Info/Creator.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Info/DiffOrdering.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Info/DiffOrdering.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Info/Offset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Info/Offset.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Info/SongAuthor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Info/SongAuthor.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Info/SongName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Info/SongName.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Info/SongPreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Info/SongPreview.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/CriteriaCheck/Info/SubName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/CriteriaCheck/Info/SubName.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/MapCheck/Parity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/MapCheck/Parity.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/MapCheck/Swing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/MapCheck/Swing.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/ProfanityFilter/AllowList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/ProfanityFilter/AllowList.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/ProfanityFilter/Interfaces/IAllowList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/ProfanityFilter/Interfaces/IAllowList.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/ProfanityFilter/Interfaces/IProfanityFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/ProfanityFilter/Interfaces/IProfanityFilter.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/ProfanityFilter/ProfanityBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/ProfanityFilter/ProfanityBase.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/ProfanityFilter/ProfanityFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/ProfanityFilter/ProfanityFilter.cs -------------------------------------------------------------------------------- /BLMapCheck/BeatmapScanner/ProfanityFilter/ProfanityList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/BeatmapScanner/ProfanityFilter/ProfanityList.cs -------------------------------------------------------------------------------- /BLMapCheck/Classes/ChroMapper/SpawnParameterHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/Classes/ChroMapper/SpawnParameterHelper.cs -------------------------------------------------------------------------------- /BLMapCheck/Classes/Helper/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/Classes/Helper/Helper.cs -------------------------------------------------------------------------------- /BLMapCheck/Classes/Results/CheckResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/Classes/Results/CheckResult.cs -------------------------------------------------------------------------------- /BLMapCheck/Classes/Results/CheckResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/Classes/Results/CheckResults.cs -------------------------------------------------------------------------------- /BLMapCheck/Classes/Unity/Vector2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/Classes/Unity/Vector2.cs -------------------------------------------------------------------------------- /BLMapCheck/Classes/Unity/Vector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/Classes/Unity/Vector3.cs -------------------------------------------------------------------------------- /BLMapCheck/Configs/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/Configs/Config.cs -------------------------------------------------------------------------------- /BLMapCheck/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BLMapCheck/dll/Analyzer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/dll/Analyzer.dll -------------------------------------------------------------------------------- /BLMapCheck/dll/JoshaParity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/dll/JoshaParity.dll -------------------------------------------------------------------------------- /BLMapCheck/dll/NVorbis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/dll/NVorbis.dll -------------------------------------------------------------------------------- /BLMapCheck/dll/Parser.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/dll/Parser.dll -------------------------------------------------------------------------------- /BLMapCheck/dll/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/dll/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /BLMapCheck/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/BLMapCheck/packages.config -------------------------------------------------------------------------------- /ChroMapper-LightModding.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/ChroMapper-LightModding.sln -------------------------------------------------------------------------------- /ChroMapper-LightModding/Assets/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/ChroMapper-LightModding/Assets/Icon.png -------------------------------------------------------------------------------- /ChroMapper-LightModding/ChroMapper-LightModding.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/ChroMapper-LightModding/ChroMapper-LightModding.csproj -------------------------------------------------------------------------------- /ChroMapper-LightModding/Export/Exporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/ChroMapper-LightModding/Export/Exporter.cs -------------------------------------------------------------------------------- /ChroMapper-LightModding/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/ChroMapper-LightModding/FodyWeavers.xml -------------------------------------------------------------------------------- /ChroMapper-LightModding/Helpers/AutocheckHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/ChroMapper-LightModding/Helpers/AutocheckHelper.cs -------------------------------------------------------------------------------- /ChroMapper-LightModding/Helpers/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/ChroMapper-LightModding/Helpers/FileHelper.cs -------------------------------------------------------------------------------- /ChroMapper-LightModding/Helpers/GridMarkerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/ChroMapper-LightModding/Helpers/GridMarkerHelper.cs -------------------------------------------------------------------------------- /ChroMapper-LightModding/Helpers/OutlineHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/ChroMapper-LightModding/Helpers/OutlineHelper.cs -------------------------------------------------------------------------------- /ChroMapper-LightModding/Licenses/LICENSE BeatSaber-MapCheck.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/ChroMapper-LightModding/Licenses/LICENSE BeatSaber-MapCheck.txt -------------------------------------------------------------------------------- /ChroMapper-LightModding/Licenses/LICENSE JoshaParity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/ChroMapper-LightModding/Licenses/LICENSE JoshaParity.txt -------------------------------------------------------------------------------- /ChroMapper-LightModding/Licenses/LICENSE Newtonsoft.Json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/ChroMapper-LightModding/Licenses/LICENSE Newtonsoft.Json.txt -------------------------------------------------------------------------------- /ChroMapper-LightModding/Models/Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/ChroMapper-LightModding/Models/Comment.cs -------------------------------------------------------------------------------- /ChroMapper-LightModding/Models/DifficultyReview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/ChroMapper-LightModding/Models/DifficultyReview.cs -------------------------------------------------------------------------------- /ChroMapper-LightModding/Models/MapsetReview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/ChroMapper-LightModding/Models/MapsetReview.cs -------------------------------------------------------------------------------- /ChroMapper-LightModding/Models/SelectedObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/ChroMapper-LightModding/Models/SelectedObject.cs -------------------------------------------------------------------------------- /ChroMapper-LightModding/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/ChroMapper-LightModding/Plugin.cs -------------------------------------------------------------------------------- /ChroMapper-LightModding/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/ChroMapper-LightModding/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ChroMapper-LightModding/UI/EditorUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/ChroMapper-LightModding/UI/EditorUI.cs -------------------------------------------------------------------------------- /ChroMapper-LightModding/UI/SongInfoUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/ChroMapper-LightModding/UI/SongInfoUI.cs -------------------------------------------------------------------------------- /ChroMapper-LightModding/UI/UIHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/ChroMapper-LightModding/UI/UIHelper.cs -------------------------------------------------------------------------------- /ChroMapper-LightModding/dll/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/ChroMapper-LightModding/dll/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /ChroMapper-LightModding/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/ChroMapper-LightModding/manifest.json -------------------------------------------------------------------------------- /ChroMapper-LightModding/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/ChroMapper-LightModding/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightAi39/ChroMapper-AutoModder/HEAD/README.md --------------------------------------------------------------------------------