├── .gitignore ├── Concept Matrix.sln ├── ConceptMatrix ├── 3D │ ├── Cylinder.cs │ ├── Lines │ │ ├── Circle.cs │ │ └── Line.cs │ ├── MathUtils.cs │ ├── Matrix3DStack.cs │ └── Sphere.cs ├── App.config ├── App.xaml ├── App.xaml.cs ├── Commands │ └── RefreshEntitiesCommand.cs ├── ConceptMatrix.csproj ├── ConceptMatrix.csproj.user ├── Controls │ ├── NumberBox.xaml │ ├── NumberBox.xaml.cs │ ├── QuaternionEditor.xaml │ └── QuaternionEditor.xaml.cs ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Models │ ├── BaseModel.cs │ └── CharacterDetails.cs ├── OffsetSettings.json ├── OffsetSettingsCN.json ├── OffsetSettingsKO.json ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── Background.png │ ├── Corrupted.png │ ├── Legacy.png │ ├── MonsterList.csv │ ├── Nope.png │ ├── PoseCharacterBackground.png │ ├── PoseCharacterClothesBackground.png │ ├── PoseCharacterFaceBackground.png │ ├── PoseCharacterHandBackground.png │ ├── PoseCharacterHrothFaceBackground.png │ ├── PoseCharacterTailBackground.png │ ├── PoseCharacterVieraEars01Background.png │ ├── PoseCharacterVieraEars02Background.png │ ├── PoseCharacterVieraEars03Background.png │ ├── PoseCharacterVieraEars04Background.png │ ├── PropsList.csv │ ├── Refresh.png │ ├── aboutbg.png │ ├── actiontimeline-paths.txt │ ├── actiontimeline.csv │ ├── actorbg.png │ ├── body.png │ ├── clothes.png │ ├── equip.png │ ├── equipbg.png │ ├── ffxivmeteorimage.png │ ├── hair.png │ ├── hands.png │ ├── head.png │ ├── human.cmp │ ├── legs.png │ ├── load.png │ ├── other.png │ ├── posebg.png │ ├── propertiesbg.png │ ├── save.png │ └── worldbg.png ├── Resx │ ├── FlyOutStrings.Designer.cs │ ├── FlyOutStrings.de.resx │ ├── FlyOutStrings.fr.resx │ ├── FlyOutStrings.ja.resx │ ├── FlyOutStrings.ko.resx │ ├── FlyOutStrings.resx │ ├── FlyOutStrings.zh.resx │ ├── MiscStrings.Designer.cs │ ├── MiscStrings.de.resx │ ├── MiscStrings.fr.resx │ ├── MiscStrings.ja.resx │ ├── MiscStrings.ko.resx │ ├── MiscStrings.resx │ ├── MiscStrings.zh.resx │ ├── UIPoseStrings.Designer.cs │ ├── UIPoseStrings.de.resx │ ├── UIPoseStrings.fr.resx │ ├── UIPoseStrings.ja.resx │ ├── UIPoseStrings.ko.resx │ ├── UIPoseStrings.resx │ ├── UIPoseStrings.zh.resx │ ├── UISimplePoseStrings.Designer.cs │ ├── UISimplePoseStrings.resx │ ├── UISimplePoseStrings.zh.resx │ ├── UIStringsContent.Designer.cs │ ├── UIStringsContent.de.resx │ ├── UIStringsContent.fr.resx │ ├── UIStringsContent.ja.resx │ ├── UIStringsContent.ko.resx │ ├── UIStringsContent.resx │ ├── UIStringsContent.zh.resx │ ├── WindowsStrings.Designer.cs │ ├── WindowsStrings.de.resx │ ├── WindowsStrings.fr.resx │ ├── WindowsStrings.ja.resx │ ├── WindowsStrings.ko.resx │ ├── WindowsStrings.resx │ └── WindowsStrings.zh.resx ├── Sheets │ ├── CharaMakeCustomize.cs │ ├── CharaMakeType.cs │ ├── ClassJobCategory.cs │ ├── ENpcBase.cs │ ├── ENpcResident.cs │ ├── Item.cs │ ├── NpcEquip.cs │ ├── PlaceName.cs │ ├── Race.cs │ ├── Stain.cs │ ├── Status.cs │ ├── TerritoryType.cs │ ├── Title.cs │ ├── Tribe.cs │ ├── Weather.cs │ └── WeatherRate.cs ├── Utility │ ├── CmpReader.cs │ ├── DatSaves.cs │ ├── ExdCsvReader.cs │ ├── Extensions.cs │ ├── FlexibleMessageBox.cs │ ├── Mediator.cs │ ├── Memory.cs │ ├── MemoryManager.cs │ ├── QuaternionConverter.cs │ ├── SaveSettings.cs │ ├── Settings.cs │ ├── Strings.cs │ └── ThreadWriting.cs ├── ViewModel │ ├── BaseViewModel.cs │ ├── CharacterDetailsViewModel.cs │ ├── MainViewModel.cs │ ├── PaletteSelectorViewModel.cs │ ├── PoseMatrixViewModel.cs │ └── SimplePoseViewModel.cs ├── Views │ ├── AboutView.xaml │ ├── AboutView.xaml.cs │ ├── ActorPropertiesView.xaml │ ├── ActorPropertiesView.xaml.cs │ ├── CharacterDetailsView.xaml │ ├── CharacterDetailsView.xaml.cs │ ├── EmoteFlyOut.xaml │ ├── EmoteFlyOut.xaml.cs │ ├── EquipmentFlyOut.xaml │ ├── EquipmentFlyOut.xaml.cs │ ├── EquipmentView.xaml │ ├── EquipmentView.xaml.cs │ ├── GearView.xaml │ ├── GearView.xaml.cs │ ├── PaletteView.xaml │ ├── PaletteView.xaml.cs │ ├── PoseMatrixView.xaml │ ├── PoseMatrixView.xaml.cs │ ├── PoseRotationView.xaml │ ├── PoseRotationView.xaml.cs │ ├── PosingOldView.xaml │ ├── PosingOldView.xaml.cs │ ├── RotationView.xaml │ ├── RotationView.xaml.cs │ ├── SimplePoseBoneView.xaml │ ├── SimplePoseBoneView.xaml.cs │ ├── SimplePoseView.xaml │ ├── SimplePoseView.xaml.cs │ ├── SpecialControl.xaml │ ├── SpecialControl.xaml.cs │ ├── WorldView.xaml │ └── WorldView.xaml.cs ├── Windows │ ├── CharacterSaveChooseWindow.xaml │ ├── CharacterSaveChooseWindow.xaml.cs │ ├── GearSave.xaml │ ├── GearSave.xaml.cs │ ├── GearsetChooseWindow.xaml │ ├── GearsetChooseWindow.xaml.cs │ ├── LanguageSelectView.xaml │ ├── LanguageSelectView.xaml.cs │ ├── LoadWindow.xaml │ ├── LoadWindow.xaml.cs │ ├── ProcessLooker.xaml │ ├── ProcessLooker.xaml.cs │ ├── SaveChooseWindow.xaml │ └── SaveChooseWindow.xaml.cs ├── app.manifest ├── cmtool-icon.ico └── packages.config ├── ConceptMatrixUpdater ├── App.config ├── App.xaml ├── App.xaml.cs ├── BrowserBehavior.cs ├── ConceptMatrixUpdater.csproj ├── ExtensionMethods.cs ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── app.manifest ├── cmupdater-icon.ico └── cmupdater-largeicon.ico ├── LICENSE ├── LICENSE.txt ├── README.md ├── appveyor.yml └── version.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/.gitignore -------------------------------------------------------------------------------- /Concept Matrix.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/Concept Matrix.sln -------------------------------------------------------------------------------- /ConceptMatrix/3D/Cylinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/3D/Cylinder.cs -------------------------------------------------------------------------------- /ConceptMatrix/3D/Lines/Circle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/3D/Lines/Circle.cs -------------------------------------------------------------------------------- /ConceptMatrix/3D/Lines/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/3D/Lines/Line.cs -------------------------------------------------------------------------------- /ConceptMatrix/3D/MathUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/3D/MathUtils.cs -------------------------------------------------------------------------------- /ConceptMatrix/3D/Matrix3DStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/3D/Matrix3DStack.cs -------------------------------------------------------------------------------- /ConceptMatrix/3D/Sphere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/3D/Sphere.cs -------------------------------------------------------------------------------- /ConceptMatrix/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/App.config -------------------------------------------------------------------------------- /ConceptMatrix/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/App.xaml -------------------------------------------------------------------------------- /ConceptMatrix/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/App.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/Commands/RefreshEntitiesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Commands/RefreshEntitiesCommand.cs -------------------------------------------------------------------------------- /ConceptMatrix/ConceptMatrix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/ConceptMatrix.csproj -------------------------------------------------------------------------------- /ConceptMatrix/ConceptMatrix.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/ConceptMatrix.csproj.user -------------------------------------------------------------------------------- /ConceptMatrix/Controls/NumberBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Controls/NumberBox.xaml -------------------------------------------------------------------------------- /ConceptMatrix/Controls/NumberBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Controls/NumberBox.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/Controls/QuaternionEditor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Controls/QuaternionEditor.xaml -------------------------------------------------------------------------------- /ConceptMatrix/Controls/QuaternionEditor.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Controls/QuaternionEditor.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/FodyWeavers.xml -------------------------------------------------------------------------------- /ConceptMatrix/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/FodyWeavers.xsd -------------------------------------------------------------------------------- /ConceptMatrix/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/MainWindow.xaml -------------------------------------------------------------------------------- /ConceptMatrix/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/MainWindow.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/Models/BaseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Models/BaseModel.cs -------------------------------------------------------------------------------- /ConceptMatrix/Models/CharacterDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Models/CharacterDetails.cs -------------------------------------------------------------------------------- /ConceptMatrix/OffsetSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/OffsetSettings.json -------------------------------------------------------------------------------- /ConceptMatrix/OffsetSettingsCN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/OffsetSettingsCN.json -------------------------------------------------------------------------------- /ConceptMatrix/OffsetSettingsKO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/OffsetSettingsKO.json -------------------------------------------------------------------------------- /ConceptMatrix/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ConceptMatrix/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ConceptMatrix/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Properties/Resources.resx -------------------------------------------------------------------------------- /ConceptMatrix/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ConceptMatrix/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Properties/Settings.settings -------------------------------------------------------------------------------- /ConceptMatrix/Resources/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/Background.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/Corrupted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/Corrupted.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/Legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/Legacy.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/MonsterList.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/MonsterList.csv -------------------------------------------------------------------------------- /ConceptMatrix/Resources/Nope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/Nope.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/PoseCharacterBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/PoseCharacterBackground.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/PoseCharacterClothesBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/PoseCharacterClothesBackground.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/PoseCharacterFaceBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/PoseCharacterFaceBackground.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/PoseCharacterHandBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/PoseCharacterHandBackground.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/PoseCharacterHrothFaceBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/PoseCharacterHrothFaceBackground.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/PoseCharacterTailBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/PoseCharacterTailBackground.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/PoseCharacterVieraEars01Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/PoseCharacterVieraEars01Background.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/PoseCharacterVieraEars02Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/PoseCharacterVieraEars02Background.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/PoseCharacterVieraEars03Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/PoseCharacterVieraEars03Background.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/PoseCharacterVieraEars04Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/PoseCharacterVieraEars04Background.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/PropsList.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/PropsList.csv -------------------------------------------------------------------------------- /ConceptMatrix/Resources/Refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/Refresh.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/aboutbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/aboutbg.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/actiontimeline-paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/actiontimeline-paths.txt -------------------------------------------------------------------------------- /ConceptMatrix/Resources/actiontimeline.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/actiontimeline.csv -------------------------------------------------------------------------------- /ConceptMatrix/Resources/actorbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/actorbg.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/body.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/clothes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/clothes.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/equip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/equip.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/equipbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/equipbg.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/ffxivmeteorimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/ffxivmeteorimage.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/hair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/hair.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/hands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/hands.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/head.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/human.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/human.cmp -------------------------------------------------------------------------------- /ConceptMatrix/Resources/legs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/legs.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/load.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/other.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/posebg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/posebg.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/propertiesbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/propertiesbg.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/save.png -------------------------------------------------------------------------------- /ConceptMatrix/Resources/worldbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resources/worldbg.png -------------------------------------------------------------------------------- /ConceptMatrix/Resx/FlyOutStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/FlyOutStrings.Designer.cs -------------------------------------------------------------------------------- /ConceptMatrix/Resx/FlyOutStrings.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/FlyOutStrings.de.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/FlyOutStrings.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/FlyOutStrings.fr.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/FlyOutStrings.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/FlyOutStrings.ja.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/FlyOutStrings.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/FlyOutStrings.ko.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/FlyOutStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/FlyOutStrings.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/FlyOutStrings.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/FlyOutStrings.zh.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/MiscStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/MiscStrings.Designer.cs -------------------------------------------------------------------------------- /ConceptMatrix/Resx/MiscStrings.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/MiscStrings.de.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/MiscStrings.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/MiscStrings.fr.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/MiscStrings.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/MiscStrings.ja.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/MiscStrings.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/MiscStrings.ko.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/MiscStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/MiscStrings.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/MiscStrings.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/MiscStrings.zh.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/UIPoseStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/UIPoseStrings.Designer.cs -------------------------------------------------------------------------------- /ConceptMatrix/Resx/UIPoseStrings.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/UIPoseStrings.de.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/UIPoseStrings.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/UIPoseStrings.fr.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/UIPoseStrings.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/UIPoseStrings.ja.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/UIPoseStrings.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/UIPoseStrings.ko.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/UIPoseStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/UIPoseStrings.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/UIPoseStrings.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/UIPoseStrings.zh.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/UISimplePoseStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/UISimplePoseStrings.Designer.cs -------------------------------------------------------------------------------- /ConceptMatrix/Resx/UISimplePoseStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/UISimplePoseStrings.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/UISimplePoseStrings.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/UISimplePoseStrings.zh.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/UIStringsContent.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/UIStringsContent.Designer.cs -------------------------------------------------------------------------------- /ConceptMatrix/Resx/UIStringsContent.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/UIStringsContent.de.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/UIStringsContent.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/UIStringsContent.fr.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/UIStringsContent.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/UIStringsContent.ja.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/UIStringsContent.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/UIStringsContent.ko.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/UIStringsContent.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/UIStringsContent.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/UIStringsContent.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/UIStringsContent.zh.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/WindowsStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/WindowsStrings.Designer.cs -------------------------------------------------------------------------------- /ConceptMatrix/Resx/WindowsStrings.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/WindowsStrings.de.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/WindowsStrings.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/WindowsStrings.fr.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/WindowsStrings.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/WindowsStrings.ja.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/WindowsStrings.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/WindowsStrings.ko.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/WindowsStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/WindowsStrings.resx -------------------------------------------------------------------------------- /ConceptMatrix/Resx/WindowsStrings.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Resx/WindowsStrings.zh.resx -------------------------------------------------------------------------------- /ConceptMatrix/Sheets/CharaMakeCustomize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Sheets/CharaMakeCustomize.cs -------------------------------------------------------------------------------- /ConceptMatrix/Sheets/CharaMakeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Sheets/CharaMakeType.cs -------------------------------------------------------------------------------- /ConceptMatrix/Sheets/ClassJobCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Sheets/ClassJobCategory.cs -------------------------------------------------------------------------------- /ConceptMatrix/Sheets/ENpcBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Sheets/ENpcBase.cs -------------------------------------------------------------------------------- /ConceptMatrix/Sheets/ENpcResident.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Sheets/ENpcResident.cs -------------------------------------------------------------------------------- /ConceptMatrix/Sheets/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Sheets/Item.cs -------------------------------------------------------------------------------- /ConceptMatrix/Sheets/NpcEquip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Sheets/NpcEquip.cs -------------------------------------------------------------------------------- /ConceptMatrix/Sheets/PlaceName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Sheets/PlaceName.cs -------------------------------------------------------------------------------- /ConceptMatrix/Sheets/Race.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Sheets/Race.cs -------------------------------------------------------------------------------- /ConceptMatrix/Sheets/Stain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Sheets/Stain.cs -------------------------------------------------------------------------------- /ConceptMatrix/Sheets/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Sheets/Status.cs -------------------------------------------------------------------------------- /ConceptMatrix/Sheets/TerritoryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Sheets/TerritoryType.cs -------------------------------------------------------------------------------- /ConceptMatrix/Sheets/Title.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Sheets/Title.cs -------------------------------------------------------------------------------- /ConceptMatrix/Sheets/Tribe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Sheets/Tribe.cs -------------------------------------------------------------------------------- /ConceptMatrix/Sheets/Weather.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Sheets/Weather.cs -------------------------------------------------------------------------------- /ConceptMatrix/Sheets/WeatherRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Sheets/WeatherRate.cs -------------------------------------------------------------------------------- /ConceptMatrix/Utility/CmpReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Utility/CmpReader.cs -------------------------------------------------------------------------------- /ConceptMatrix/Utility/DatSaves.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Utility/DatSaves.cs -------------------------------------------------------------------------------- /ConceptMatrix/Utility/ExdCsvReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Utility/ExdCsvReader.cs -------------------------------------------------------------------------------- /ConceptMatrix/Utility/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Utility/Extensions.cs -------------------------------------------------------------------------------- /ConceptMatrix/Utility/FlexibleMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Utility/FlexibleMessageBox.cs -------------------------------------------------------------------------------- /ConceptMatrix/Utility/Mediator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Utility/Mediator.cs -------------------------------------------------------------------------------- /ConceptMatrix/Utility/Memory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Utility/Memory.cs -------------------------------------------------------------------------------- /ConceptMatrix/Utility/MemoryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Utility/MemoryManager.cs -------------------------------------------------------------------------------- /ConceptMatrix/Utility/QuaternionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Utility/QuaternionConverter.cs -------------------------------------------------------------------------------- /ConceptMatrix/Utility/SaveSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Utility/SaveSettings.cs -------------------------------------------------------------------------------- /ConceptMatrix/Utility/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Utility/Settings.cs -------------------------------------------------------------------------------- /ConceptMatrix/Utility/Strings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Utility/Strings.cs -------------------------------------------------------------------------------- /ConceptMatrix/Utility/ThreadWriting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Utility/ThreadWriting.cs -------------------------------------------------------------------------------- /ConceptMatrix/ViewModel/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/ViewModel/BaseViewModel.cs -------------------------------------------------------------------------------- /ConceptMatrix/ViewModel/CharacterDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/ViewModel/CharacterDetailsViewModel.cs -------------------------------------------------------------------------------- /ConceptMatrix/ViewModel/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/ViewModel/MainViewModel.cs -------------------------------------------------------------------------------- /ConceptMatrix/ViewModel/PaletteSelectorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/ViewModel/PaletteSelectorViewModel.cs -------------------------------------------------------------------------------- /ConceptMatrix/ViewModel/PoseMatrixViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/ViewModel/PoseMatrixViewModel.cs -------------------------------------------------------------------------------- /ConceptMatrix/ViewModel/SimplePoseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/ViewModel/SimplePoseViewModel.cs -------------------------------------------------------------------------------- /ConceptMatrix/Views/AboutView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/AboutView.xaml -------------------------------------------------------------------------------- /ConceptMatrix/Views/AboutView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/AboutView.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/Views/ActorPropertiesView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/ActorPropertiesView.xaml -------------------------------------------------------------------------------- /ConceptMatrix/Views/ActorPropertiesView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/ActorPropertiesView.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/Views/CharacterDetailsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/CharacterDetailsView.xaml -------------------------------------------------------------------------------- /ConceptMatrix/Views/CharacterDetailsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/CharacterDetailsView.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/Views/EmoteFlyOut.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/EmoteFlyOut.xaml -------------------------------------------------------------------------------- /ConceptMatrix/Views/EmoteFlyOut.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/EmoteFlyOut.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/Views/EquipmentFlyOut.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/EquipmentFlyOut.xaml -------------------------------------------------------------------------------- /ConceptMatrix/Views/EquipmentFlyOut.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/EquipmentFlyOut.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/Views/EquipmentView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/EquipmentView.xaml -------------------------------------------------------------------------------- /ConceptMatrix/Views/EquipmentView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/EquipmentView.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/Views/GearView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/GearView.xaml -------------------------------------------------------------------------------- /ConceptMatrix/Views/GearView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/GearView.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/Views/PaletteView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/PaletteView.xaml -------------------------------------------------------------------------------- /ConceptMatrix/Views/PaletteView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/PaletteView.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/Views/PoseMatrixView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/PoseMatrixView.xaml -------------------------------------------------------------------------------- /ConceptMatrix/Views/PoseMatrixView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/PoseMatrixView.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/Views/PoseRotationView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/PoseRotationView.xaml -------------------------------------------------------------------------------- /ConceptMatrix/Views/PoseRotationView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/PoseRotationView.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/Views/PosingOldView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/PosingOldView.xaml -------------------------------------------------------------------------------- /ConceptMatrix/Views/PosingOldView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/PosingOldView.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/Views/RotationView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/RotationView.xaml -------------------------------------------------------------------------------- /ConceptMatrix/Views/RotationView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/RotationView.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/Views/SimplePoseBoneView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/SimplePoseBoneView.xaml -------------------------------------------------------------------------------- /ConceptMatrix/Views/SimplePoseBoneView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/SimplePoseBoneView.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/Views/SimplePoseView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/SimplePoseView.xaml -------------------------------------------------------------------------------- /ConceptMatrix/Views/SimplePoseView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/SimplePoseView.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/Views/SpecialControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/SpecialControl.xaml -------------------------------------------------------------------------------- /ConceptMatrix/Views/SpecialControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/SpecialControl.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/Views/WorldView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/WorldView.xaml -------------------------------------------------------------------------------- /ConceptMatrix/Views/WorldView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Views/WorldView.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/Windows/CharacterSaveChooseWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Windows/CharacterSaveChooseWindow.xaml -------------------------------------------------------------------------------- /ConceptMatrix/Windows/CharacterSaveChooseWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Windows/CharacterSaveChooseWindow.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/Windows/GearSave.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Windows/GearSave.xaml -------------------------------------------------------------------------------- /ConceptMatrix/Windows/GearSave.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Windows/GearSave.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/Windows/GearsetChooseWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Windows/GearsetChooseWindow.xaml -------------------------------------------------------------------------------- /ConceptMatrix/Windows/GearsetChooseWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Windows/GearsetChooseWindow.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/Windows/LanguageSelectView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Windows/LanguageSelectView.xaml -------------------------------------------------------------------------------- /ConceptMatrix/Windows/LanguageSelectView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Windows/LanguageSelectView.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/Windows/LoadWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Windows/LoadWindow.xaml -------------------------------------------------------------------------------- /ConceptMatrix/Windows/LoadWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Windows/LoadWindow.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/Windows/ProcessLooker.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Windows/ProcessLooker.xaml -------------------------------------------------------------------------------- /ConceptMatrix/Windows/ProcessLooker.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Windows/ProcessLooker.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/Windows/SaveChooseWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Windows/SaveChooseWindow.xaml -------------------------------------------------------------------------------- /ConceptMatrix/Windows/SaveChooseWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/Windows/SaveChooseWindow.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrix/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/app.manifest -------------------------------------------------------------------------------- /ConceptMatrix/cmtool-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/cmtool-icon.ico -------------------------------------------------------------------------------- /ConceptMatrix/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrix/packages.config -------------------------------------------------------------------------------- /ConceptMatrixUpdater/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrixUpdater/App.config -------------------------------------------------------------------------------- /ConceptMatrixUpdater/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrixUpdater/App.xaml -------------------------------------------------------------------------------- /ConceptMatrixUpdater/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrixUpdater/App.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrixUpdater/BrowserBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrixUpdater/BrowserBehavior.cs -------------------------------------------------------------------------------- /ConceptMatrixUpdater/ConceptMatrixUpdater.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrixUpdater/ConceptMatrixUpdater.csproj -------------------------------------------------------------------------------- /ConceptMatrixUpdater/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrixUpdater/ExtensionMethods.cs -------------------------------------------------------------------------------- /ConceptMatrixUpdater/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrixUpdater/FodyWeavers.xml -------------------------------------------------------------------------------- /ConceptMatrixUpdater/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrixUpdater/FodyWeavers.xsd -------------------------------------------------------------------------------- /ConceptMatrixUpdater/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrixUpdater/MainWindow.xaml -------------------------------------------------------------------------------- /ConceptMatrixUpdater/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrixUpdater/MainWindow.xaml.cs -------------------------------------------------------------------------------- /ConceptMatrixUpdater/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrixUpdater/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ConceptMatrixUpdater/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrixUpdater/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ConceptMatrixUpdater/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrixUpdater/Properties/Resources.resx -------------------------------------------------------------------------------- /ConceptMatrixUpdater/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrixUpdater/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ConceptMatrixUpdater/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrixUpdater/Properties/Settings.settings -------------------------------------------------------------------------------- /ConceptMatrixUpdater/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrixUpdater/app.manifest -------------------------------------------------------------------------------- /ConceptMatrixUpdater/cmupdater-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrixUpdater/cmupdater-icon.ico -------------------------------------------------------------------------------- /ConceptMatrixUpdater/cmupdater-largeicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/ConceptMatrixUpdater/cmupdater-largeicon.ico -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bluefissure/CMTool/HEAD/appveyor.yml -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 2.0.6.6 --------------------------------------------------------------------------------