├── .gitattributes ├── .gitignore ├── FLVER_Editor.sln ├── FLVER_Editor ├── ActionManager.cs ├── Actions │ ├── AddNewDummyAction.cs │ ├── ApplyMeshSimpleSkinAction.cs │ ├── BonesTableCellValueUpdatedAction.cs │ ├── CenterMeshToWorldAction.cs │ ├── DeleteConnectedVerticesAction.cs │ ├── DeleteSelectedMeshAction.cs │ ├── DeleteVertexAboveAction.cs │ ├── DeleteVertexAction.cs │ ├── DeleteVertexBelowAction.cs │ ├── DummyTableDataChangedAction.cs │ ├── DuplicateDummyAction.cs │ ├── DuplicateMeshAction.cs │ ├── FlipYZAction.cs │ ├── Helpers │ │ └── VertexDeleteHelper.cs │ ├── ImportGhostModelAction.cs │ ├── ImportMeshesToFlverAction.cs │ ├── LoadDummyProfile.cs │ ├── LoadJsonAction.cs │ ├── MaterialsTableOkAction.cs │ ├── MergeFlversAction.cs │ ├── MeshTableCellValueChangedAction.cs │ ├── MeshTansformAction.cs │ ├── MirrorMeshAction.cs │ ├── ResetAllMeshesAction.cs │ ├── ReverseFaceSetsAction.cs │ ├── ReverseNormalsAction.cs │ ├── SetAllBBsMaxSizeAction.cs │ ├── SolveAllBBsAction.cs │ ├── SolveAllMeshLODsAction.cs │ ├── TexturesTableCellUpdateAction.cs │ ├── ToggleBackFacesAction.cs │ ├── UpdateTextureAction.cs │ └── UpdateVertexPosition.cs ├── App.config ├── AssimpNet.dll ├── BNDFWrapper.cs ├── BasicLogger.cs ├── Content │ └── Segoe UI.xnb ├── DropdownControl.cs ├── EasyCompletionComboBox.cs ├── EliteKnight.flver ├── EliteKnight.flver.bak ├── EliteKnight.tpf ├── Exporter.cs ├── FLVERConverter.cs ├── FLVER_Editor.csproj ├── FbxDataExtractor.deps.json ├── FbxDataExtractor.dll ├── FbxDataExtractor.runtimeconfig.json ├── FileDlgExtenders.dll ├── FlverFixer │ └── Util │ │ └── FlverUtils.cs ├── Forms.cs ├── Generators.cs ├── Havoc.dll ├── Ijwhost.dll ├── Importer.cs ├── ImporterOpenFileDialog.Designer.cs ├── ImporterOpenFileDialog.cs ├── ImporterOpenFileDialog.resx ├── IniParser.cs ├── MATBIN.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Matrix4x4.cs ├── Mono3D.cs ├── ObjectExtensions.cs ├── Program.cs ├── ProgramUtils.cs ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── launchSettings.json ├── Resources │ ├── bone │ │ └── boneConversion.ini │ ├── dummy │ │ ├── dummyInfo.json │ │ └── dummypresets.json │ ├── example │ │ ├── EliteKnight.flver │ │ ├── EliteKnight.flver.bak │ │ └── EliteKnight.tpf │ ├── icon │ │ ├── ICON.png │ │ ├── display_female_body_icon.png │ │ ├── display_female_body_icon_purple.png │ │ ├── display_male_body_icon.png │ │ ├── hide_all_mesh_icon.png │ │ ├── icon.ico │ │ ├── reset_mesh_icon.png │ │ ├── select_all_dummies_icon.png │ │ ├── select_all_mesh_icon.png │ │ ├── solve_all_bbs_icon.png │ │ ├── solve_all_bbs_max_size_icon.png │ │ └── solve_all_mesh_lods_icon.png │ ├── image │ │ ├── bg.png │ │ └── singleColor.png │ ├── material │ │ └── materialpresets.json │ └── model │ │ ├── body.mtl │ │ ├── boxobj.mtl │ │ ├── femalebody.fbx │ │ ├── femalebody.mtl │ │ └── malebody.fbx ├── SapFlverScan.cs ├── SapResources │ ├── CompressAnim │ │ └── CompressAnim.exe │ └── FLVER2MaterialInfoBank │ │ ├── BankAC6.xml │ │ ├── BankBB.xml │ │ ├── BankDS1.xml │ │ ├── BankDS1R.xml │ │ ├── BankDS2.xml │ │ ├── BankDS3.xml │ │ ├── BankER.xml │ │ ├── BankNR.xml │ │ └── BankSDT.xml ├── StringMatcher.cs ├── TeximpNet.dll ├── Transform3D.cs ├── Transform3DOperations.cs ├── TransformAction.cs ├── UVsPanel.cs ├── UpgradeReport.sarif ├── Util3D.cs ├── VecUtils.cs ├── Vector2D.cs ├── Vector3D.cs ├── Vector4D.cs ├── WinFormsApp1.csproj ├── app.manifest ├── body.mtl ├── femalebody.mtl ├── icon.ico ├── lib │ ├── MonogameWindows │ │ ├── Lidgren.Network.dll │ │ ├── Lidgren.Network.xml │ │ ├── MonoGame.Framework.Net.dll │ │ ├── MonoGame.Framework.Net.xml │ │ ├── MonoGame.Framework.dll │ │ ├── MonoGame.Framework.xml │ │ ├── SharpDX.DXGI.dll │ │ ├── SharpDX.DXGI.xml │ │ ├── SharpDX.Direct2D1.dll │ │ ├── SharpDX.Direct2D1.xml │ │ ├── SharpDX.Direct3D11.dll │ │ ├── SharpDX.Direct3D11.xml │ │ ├── SharpDX.Direct3D9.dll │ │ ├── SharpDX.Direct3D9.xml │ │ ├── SharpDX.MediaFoundation.dll │ │ ├── SharpDX.MediaFoundation.xml │ │ ├── SharpDX.RawInput.dll │ │ ├── SharpDX.RawInput.xml │ │ ├── SharpDX.XAudio2.dll │ │ ├── SharpDX.XAudio2.xml │ │ ├── SharpDX.XInput.dll │ │ ├── SharpDX.XInput.xml │ │ ├── SharpDX.dll │ │ └── SharpDX.xml │ ├── ObjLoader │ │ └── CjClutter.ObjLoader.Loader.dll │ └── Yuuki │ │ └── assimp.lib ├── libfbxsdk.dll ├── oo2core_6_win64.dll ├── settings.ini ├── updates.txt └── upgrade-assistant.clef ├── FbxImporter ├── .gitignore ├── .gitmodules ├── FbxDataExtractor │ ├── AssemblyInfo.cpp │ ├── FbxDataExtractor.cpp │ ├── FbxDataExtractor.vcxproj │ ├── FbxDataExtractor.vcxproj.filters │ ├── FbxMeshData.cpp │ ├── FbxMeshData.h │ ├── Resource.h │ ├── Util.h │ ├── app.ico │ ├── app.rc │ ├── pch.cpp │ └── pch.h ├── FbxImporter.sln ├── FbxImporter.sln.DotSettings ├── FbxImporter │ ├── .gitignore │ ├── App.axaml │ ├── App.axaml.cs │ ├── Assets │ │ └── avalonia-logo.ico │ ├── FbxImporter.csproj │ ├── FodyWeavers.xml │ ├── Logger.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── SapResources │ │ └── FLVER2MaterialInfoBank │ │ │ ├── BankAC6.xml │ │ │ ├── BankBB.xml │ │ │ ├── BankDS1.xml │ │ │ ├── BankDS1R.xml │ │ │ ├── BankDS2.xml │ │ │ ├── BankDS3.xml │ │ │ ├── BankER.xml │ │ │ ├── BankNR.xml │ │ │ └── BankSDT.xml │ ├── Util │ │ └── FlverUtils.cs │ ├── ViewLocator.cs │ ├── ViewModels │ │ ├── FbxMeshDataViewModel.cs │ │ ├── FbxSceneDataViewModel.cs │ │ ├── FlverMeshViewModel.cs │ │ ├── FlverViewModel.cs │ │ ├── MainWindowViewModel.cs │ │ ├── MeshImportOptions.cs │ │ ├── MeshImportOptionsViewModel.cs │ │ ├── ProgressViewModel.cs │ │ └── ViewModelBase.cs │ └── Views │ │ ├── FbxSceneDataView.axaml │ │ ├── FbxSceneDataView.axaml.cs │ │ ├── FlverView.axaml │ │ ├── FlverView.axaml.cs │ │ ├── MainWindow.axaml │ │ ├── MainWindow.axaml.cs │ │ ├── MeshImportOptionsView.axaml │ │ └── MeshImportOptionsView.axaml.cs ├── SoulsAssetPipeline │ ├── Animation │ │ ├── HKX │ │ │ ├── Animation.cs │ │ │ ├── HKX.cs │ │ │ ├── HavokAnimationData.cs │ │ │ ├── RootMotionData.cs │ │ │ ├── RootMotionDataPlayer.cs │ │ │ └── SplineCompressedAnimation.cs │ │ ├── HKX2 │ │ │ ├── Autogen │ │ │ │ ├── CustomBoneFixModifier.cs │ │ │ │ ├── CustomClipGenerator.cs │ │ │ │ ├── CustomLookAtTwistModifier.cs │ │ │ │ ├── CustomLookAtTwistModifierTwistParam.cs │ │ │ │ ├── CustomManualSelectorGenerator.cs │ │ │ │ ├── CustomManualSelectorGeneratorInternalState.cs │ │ │ │ ├── CustomMeshParameter.cs │ │ │ │ ├── CustomMeshTriangleParameter.cs │ │ │ │ ├── CustomParamStorageExtendedMeshShape.cs │ │ │ │ ├── CustomParamStorageMeshShape.cs │ │ │ │ ├── CustomSprjGenerator.cs │ │ │ │ ├── CustomTimeActGenerator.cs │ │ │ │ ├── CustomTransitionEffect.cs │ │ │ │ ├── fsnpCustomMeshParameter.cs │ │ │ │ ├── fsnpCustomMeshParameterPrimitiveData.cs │ │ │ │ ├── fsnpCustomMeshParameterTriangleData.cs │ │ │ │ ├── fsnpCustomParamCompressedMeshShape.cs │ │ │ │ ├── hclAction.cs │ │ │ │ ├── hclAntiPinchConstraintSet.cs │ │ │ │ ├── hclAntiPinchConstraintSetPerParticle.cs │ │ │ │ ├── hclBendLinkConstraintSet.cs │ │ │ │ ├── hclBendLinkConstraintSetLink.cs │ │ │ │ ├── hclBendLinkConstraintSetMx.cs │ │ │ │ ├── hclBendLinkConstraintSetMxBatch.cs │ │ │ │ ├── hclBendLinkConstraintSetMxSingle.cs │ │ │ │ ├── hclBendLinkSetupObject.cs │ │ │ │ ├── hclBendStiffnessConstraintSet.cs │ │ │ │ ├── hclBendStiffnessConstraintSetLink.cs │ │ │ │ ├── hclBendStiffnessConstraintSetMx.cs │ │ │ │ ├── hclBendStiffnessConstraintSetMxBatch.cs │ │ │ │ ├── hclBendStiffnessConstraintSetMxSingle.cs │ │ │ │ ├── hclBendStiffnessSetupObject.cs │ │ │ │ ├── hclBlendSetupObject.cs │ │ │ │ ├── hclBlendSomeVerticesOperator.cs │ │ │ │ ├── hclBlendSomeVerticesOperatorBlendEntry.cs │ │ │ │ ├── hclBonePlanesConstraintSet.cs │ │ │ │ ├── hclBonePlanesConstraintSetBonePlane.cs │ │ │ │ ├── hclBonePlanesSetupObject.cs │ │ │ │ ├── hclBonePlanesSetupObjectGlobalPlane.cs │ │ │ │ ├── hclBonePlanesSetupObjectPerParticleAngle.cs │ │ │ │ ├── hclBonePlanesSetupObjectPerParticlePlane.cs │ │ │ │ ├── hclBoneSpaceDeformer.cs │ │ │ │ ├── hclBoneSpaceDeformerFourBlendEntryBlock.cs │ │ │ │ ├── hclBoneSpaceDeformerLocalBlockP.cs │ │ │ │ ├── hclBoneSpaceDeformerLocalBlockPN.cs │ │ │ │ ├── hclBoneSpaceDeformerLocalBlockPNT.cs │ │ │ │ ├── hclBoneSpaceDeformerLocalBlockPNTB.cs │ │ │ │ ├── hclBoneSpaceDeformerLocalBlockUnpackedP.cs │ │ │ │ ├── hclBoneSpaceDeformerLocalBlockUnpackedPN.cs │ │ │ │ ├── hclBoneSpaceDeformerLocalBlockUnpackedPNT.cs │ │ │ │ ├── hclBoneSpaceDeformerLocalBlockUnpackedPNTB.cs │ │ │ │ ├── hclBoneSpaceDeformerOneBlendEntryBlock.cs │ │ │ │ ├── hclBoneSpaceDeformerThreeBlendEntryBlock.cs │ │ │ │ ├── hclBoneSpaceDeformerTwoBlendEntryBlock.cs │ │ │ │ ├── hclBoneSpaceMeshMeshDeformOperator.cs │ │ │ │ ├── hclBoneSpaceMeshMeshDeformPNOperator.cs │ │ │ │ ├── hclBoneSpaceMeshMeshDeformPNTBOperator.cs │ │ │ │ ├── hclBoneSpaceMeshMeshDeformPNTOperator.cs │ │ │ │ ├── hclBoneSpaceMeshMeshDeformPOperator.cs │ │ │ │ ├── hclBoneSpaceSkinOperator.cs │ │ │ │ ├── hclBoneSpaceSkinPNOperator.cs │ │ │ │ ├── hclBoneSpaceSkinPNTBOperator.cs │ │ │ │ ├── hclBoneSpaceSkinPNTOperator.cs │ │ │ │ ├── hclBoneSpaceSkinPOperator.cs │ │ │ │ ├── hclBufferDefinition.cs │ │ │ │ ├── hclBufferLayout.cs │ │ │ │ ├── hclBufferLayoutBufferElement.cs │ │ │ │ ├── hclBufferLayoutSlot.cs │ │ │ │ ├── hclBufferSetupObject.cs │ │ │ │ ├── hclBufferUsage.cs │ │ │ │ ├── hclCapsuleShape.cs │ │ │ │ ├── hclClothContainer.cs │ │ │ │ ├── hclClothData.cs │ │ │ │ ├── hclClothSetupContainer.cs │ │ │ │ ├── hclClothSetupObject.cs │ │ │ │ ├── hclClothState.cs │ │ │ │ ├── hclClothStateBufferAccess.cs │ │ │ │ ├── hclClothStateSetupObject.cs │ │ │ │ ├── hclClothStateTransformSetAccess.cs │ │ │ │ ├── hclCollidable.cs │ │ │ │ ├── hclCompressibleLinkConstraintSet.cs │ │ │ │ ├── hclCompressibleLinkConstraintSetLink.cs │ │ │ │ ├── hclCompressibleLinkConstraintSetMx.cs │ │ │ │ ├── hclCompressibleLinkConstraintSetMxBatch.cs │ │ │ │ ├── hclCompressibleLinkConstraintSetMxSingle.cs │ │ │ │ ├── hclConstraintSet.cs │ │ │ │ ├── hclConstraintSetSetupObject.cs │ │ │ │ ├── hclConvexGeometryShape.cs │ │ │ │ ├── hclConvexHeightFieldShape.cs │ │ │ │ ├── hclConvexPlanesShape.cs │ │ │ │ ├── hclCopyVerticesOperator.cs │ │ │ │ ├── hclDisplayBufferSetupObject.cs │ │ │ │ ├── hclEdgeSelectionInput.cs │ │ │ │ ├── hclGatherAllVerticesOperator.cs │ │ │ │ ├── hclGatherSomeVerticesOperator.cs │ │ │ │ ├── hclGatherSomeVerticesOperatorVertexPair.cs │ │ │ │ ├── hclInputConvertOperator.cs │ │ │ │ ├── hclLocalRangeConstraintSet.cs │ │ │ │ ├── hclLocalRangeConstraintSetLocalConstraint.cs │ │ │ │ ├── hclLocalRangeSetupObject.cs │ │ │ │ ├── hclMeshBoneDeformOperator.cs │ │ │ │ ├── hclMeshBoneDeformOperatorTriangleBonePair.cs │ │ │ │ ├── hclMeshBoneDeformSetupObject.cs │ │ │ │ ├── hclMeshMeshDeformOperator.cs │ │ │ │ ├── hclMeshMeshDeformOperatorTriangleVertexPair.cs │ │ │ │ ├── hclMeshMeshDeformSetupObject.cs │ │ │ │ ├── hclMoveFixedParticlesSetupObject.cs │ │ │ │ ├── hclMoveParticlesOperator.cs │ │ │ │ ├── hclMoveParticlesOperatorVertexParticlePair.cs │ │ │ │ ├── hclNamedSetupMesh.cs │ │ │ │ ├── hclNamedTransformSetSetupObject.cs │ │ │ │ ├── hclObjectSpaceDeformer.cs │ │ │ │ ├── hclObjectSpaceDeformerFourBlendEntryBlock.cs │ │ │ │ ├── hclObjectSpaceDeformerLocalBlockP.cs │ │ │ │ ├── hclObjectSpaceDeformerLocalBlockPN.cs │ │ │ │ ├── hclObjectSpaceDeformerLocalBlockPNT.cs │ │ │ │ ├── hclObjectSpaceDeformerLocalBlockPNTB.cs │ │ │ │ ├── hclObjectSpaceDeformerLocalBlockUnpackedP.cs │ │ │ │ ├── hclObjectSpaceDeformerLocalBlockUnpackedPN.cs │ │ │ │ ├── hclObjectSpaceDeformerLocalBlockUnpackedPNT.cs │ │ │ │ ├── hclObjectSpaceDeformerLocalBlockUnpackedPNTB.cs │ │ │ │ ├── hclObjectSpaceDeformerOneBlendEntryBlock.cs │ │ │ │ ├── hclObjectSpaceDeformerThreeBlendEntryBlock.cs │ │ │ │ ├── hclObjectSpaceDeformerTwoBlendEntryBlock.cs │ │ │ │ ├── hclObjectSpaceMeshMeshDeformOperator.cs │ │ │ │ ├── hclObjectSpaceMeshMeshDeformPNOperator.cs │ │ │ │ ├── hclObjectSpaceMeshMeshDeformPNTBOperator.cs │ │ │ │ ├── hclObjectSpaceMeshMeshDeformPNTOperator.cs │ │ │ │ ├── hclObjectSpaceMeshMeshDeformPOperator.cs │ │ │ │ ├── hclObjectSpaceSkinOperator.cs │ │ │ │ ├── hclObjectSpaceSkinPNOperator.cs │ │ │ │ ├── hclObjectSpaceSkinPNTBOperator.cs │ │ │ │ ├── hclObjectSpaceSkinPNTOperator.cs │ │ │ │ ├── hclObjectSpaceSkinPOperator.cs │ │ │ │ ├── hclOperator.cs │ │ │ │ ├── hclOperatorSetupObject.cs │ │ │ │ ├── hclOutputConvertOperator.cs │ │ │ │ ├── hclPlaneShape.cs │ │ │ │ ├── hclRuntimeConversionInfo.cs │ │ │ │ ├── hclRuntimeConversionInfoElementConversion.cs │ │ │ │ ├── hclRuntimeConversionInfoSlotConversion.cs │ │ │ │ ├── hclSceneDataSetupMesh.cs │ │ │ │ ├── hclSceneDataSetupMeshSection.cs │ │ │ │ ├── hclScratchBufferDefinition.cs │ │ │ │ ├── hclScratchBufferSetupObject.cs │ │ │ │ ├── hclSetupMesh.cs │ │ │ │ ├── hclSetupMeshSection.cs │ │ │ │ ├── hclSetupMeshSectionTriangle.cs │ │ │ │ ├── hclShadowBufferDefinition.cs │ │ │ │ ├── hclShape.cs │ │ │ │ ├── hclSimClothBufferSetupObject.cs │ │ │ │ ├── hclSimClothData.cs │ │ │ │ ├── hclSimClothDataCollidablePinchingData.cs │ │ │ │ ├── hclSimClothDataCollidableTransformMap.cs │ │ │ │ ├── hclSimClothDataLandscapeCollisionData.cs │ │ │ │ ├── hclSimClothDataOverridableSimulationInfo.cs │ │ │ │ ├── hclSimClothDataParticleData.cs │ │ │ │ ├── hclSimClothDataTransferMotionData.cs │ │ │ │ ├── hclSimClothPose.cs │ │ │ │ ├── hclSimClothSetupObject.cs │ │ │ │ ├── hclSimClothSetupObjectPerInstanceCollidable.cs │ │ │ │ ├── hclSimClothSetupObjectTransferMotionSetupData.cs │ │ │ │ ├── hclSimpleMeshBoneDeformOperator.cs │ │ │ │ ├── hclSimpleMeshBoneDeformOperatorTriangleBonePair.cs │ │ │ │ ├── hclSimpleWindAction.cs │ │ │ │ ├── hclSimulateOperator.cs │ │ │ │ ├── hclSimulateSetupObject.cs │ │ │ │ ├── hclSimulationSetupMesh.cs │ │ │ │ ├── hclSimulationSetupMeshMapOptions.cs │ │ │ │ ├── hclSkeletonTransformSetSetupObject.cs │ │ │ │ ├── hclSkinOperator.cs │ │ │ │ ├── hclSkinOperatorBoneInfluence.cs │ │ │ │ ├── hclSkinSetupObject.cs │ │ │ │ ├── hclSphereShape.cs │ │ │ │ ├── hclStandardLinkConstraintSet.cs │ │ │ │ ├── hclStandardLinkConstraintSetLink.cs │ │ │ │ ├── hclStandardLinkConstraintSetMx.cs │ │ │ │ ├── hclStandardLinkConstraintSetMxBatch.cs │ │ │ │ ├── hclStandardLinkConstraintSetMxSingle.cs │ │ │ │ ├── hclStandardLinkSetupObject.cs │ │ │ │ ├── hclStaticDisplayBufferSetupObject.cs │ │ │ │ ├── hclStaticShadowBufferDefinition.cs │ │ │ │ ├── hclStorageSetupMesh.cs │ │ │ │ ├── hclStorageSetupMeshBone.cs │ │ │ │ ├── hclStorageSetupMeshEdgeChannel.cs │ │ │ │ ├── hclStorageSetupMeshSection.cs │ │ │ │ ├── hclStorageSetupMeshSectionBoneInfluences.cs │ │ │ │ ├── hclStorageSetupMeshSectionSectionEdgeSelectionChannel.cs │ │ │ │ ├── hclStorageSetupMeshSectionSectionTriangleSelectionChannel.cs │ │ │ │ ├── hclStorageSetupMeshSectionSectionVertexChannel.cs │ │ │ │ ├── hclStorageSetupMeshSectionSectionVertexFloatChannel.cs │ │ │ │ ├── hclStorageSetupMeshSectionSectionVertexSelectionChannel.cs │ │ │ │ ├── hclStorageSetupMeshTriangleChannel.cs │ │ │ │ ├── hclStorageSetupMeshVertexChannel.cs │ │ │ │ ├── hclStretchLinkConstraintSet.cs │ │ │ │ ├── hclStretchLinkConstraintSetLink.cs │ │ │ │ ├── hclStretchLinkConstraintSetMx.cs │ │ │ │ ├── hclStretchLinkConstraintSetMxBatch.cs │ │ │ │ ├── hclStretchLinkConstraintSetMxSingle.cs │ │ │ │ ├── hclStretchLinkSetupObject.cs │ │ │ │ ├── hclTaperedCapsuleShape.cs │ │ │ │ ├── hclToolNamedObjectReference.cs │ │ │ │ ├── hclTransformSetDefinition.cs │ │ │ │ ├── hclTransformSetSetupObject.cs │ │ │ │ ├── hclTransformSetUsage.cs │ │ │ │ ├── hclTransformSetUsageTransformTracker.cs │ │ │ │ ├── hclTransitionConstraintSet.cs │ │ │ │ ├── hclTransitionConstraintSetPerParticle.cs │ │ │ │ ├── hclTransitionSetupObject.cs │ │ │ │ ├── hclTriangleSelectionInput.cs │ │ │ │ ├── hclUpdateAllVertexFramesOperator.cs │ │ │ │ ├── hclUpdateSomeVertexFramesOperator.cs │ │ │ │ ├── hclUpdateSomeVertexFramesOperatorTriangle.cs │ │ │ │ ├── hclUpdateVertexFramesSetupObject.cs │ │ │ │ ├── hclVertexCopySetupObject.cs │ │ │ │ ├── hclVertexFloatInput.cs │ │ │ │ ├── hclVertexGatherSetupObject.cs │ │ │ │ ├── hclVertexSelectionInput.cs │ │ │ │ ├── hclVolumeConstraint.cs │ │ │ │ ├── hclVolumeConstraintApplyData.cs │ │ │ │ ├── hclVolumeConstraintFrameData.cs │ │ │ │ ├── hclVolumeConstraintMx.cs │ │ │ │ ├── hclVolumeConstraintMxApplyBatchData.cs │ │ │ │ ├── hclVolumeConstraintMxApplySingleData.cs │ │ │ │ ├── hclVolumeConstraintMxFrameBatchData.cs │ │ │ │ ├── hclVolumeConstraintMxFrameSingleData.cs │ │ │ │ ├── hclVolumeConstraintSetupObject.cs │ │ │ │ ├── hkAabb.cs │ │ │ │ ├── hkAabb16.cs │ │ │ │ ├── hkAabbHalf.cs │ │ │ │ ├── hkAabbUint32.cs │ │ │ │ ├── hkAlignSceneToNodeOptions.cs │ │ │ │ ├── hkArrayTypeAttribute.cs │ │ │ │ ├── hkBaseObject.cs │ │ │ │ ├── hkBitField.cs │ │ │ │ ├── hkBitFieldBasehkBitFieldStoragehkArrayunsignedinthkContainerHeapAllocator.cs │ │ │ │ ├── hkBitFieldBasehkOffsetBitFieldStoragehkArrayunsignedinthkContainerHeapAllocator.cs │ │ │ │ ├── hkBitFieldStoragehkArrayunsignedinthkContainerHeapAllocator.cs │ │ │ │ ├── hkClass.cs │ │ │ │ ├── hkClassEnum.cs │ │ │ │ ├── hkClassEnumItem.cs │ │ │ │ ├── hkClassMember.cs │ │ │ │ ├── hkColor.cs │ │ │ │ ├── hkCompressedMassProperties.cs │ │ │ │ ├── hkContactPoint.cs │ │ │ │ ├── hkContactPointMaterial.cs │ │ │ │ ├── hkCustomAttributes.cs │ │ │ │ ├── hkCustomAttributesAttribute.cs │ │ │ │ ├── hkDataObjectTypeAttribute.cs │ │ │ │ ├── hkDescriptionAttribute.cs │ │ │ │ ├── hkDocumentationAttribute.cs │ │ │ │ ├── hkFloat16.cs │ │ │ │ ├── hkFloat16Transform.cs │ │ │ │ ├── hkFourTransposedPointsf.cs │ │ │ │ ├── hkFreeListArrayhknpMaterialhknpMaterialId8hknpMaterialFreeListArrayOperations.cs │ │ │ │ ├── hkFreeListArrayhknpMotionPropertieshknpMotionPropertiesId8hknpMotionPropertiesFreeListArrayOperations.cs │ │ │ │ ├── hkFreeListArrayhknpShapeInstancehkHandleshort32767hknpShapeInstanceIdDiscriminant8hknpShapeInstance.cs │ │ │ │ ├── hkGeometry.cs │ │ │ │ ├── hkGeometryTriangle.cs │ │ │ │ ├── hkGizmoAttribute.cs │ │ │ │ ├── hkIndexedTransformSet.cs │ │ │ │ ├── hkIntRealPair.cs │ │ │ │ ├── hkLinkAttribute.cs │ │ │ │ ├── hkLocalFrame.cs │ │ │ │ ├── hkLocalFrameGroup.cs │ │ │ │ ├── hkMassProperties.cs │ │ │ │ ├── hkMemoryMeshBody.cs │ │ │ │ ├── hkMemoryMeshMaterial.cs │ │ │ │ ├── hkMemoryMeshShape.cs │ │ │ │ ├── hkMemoryMeshShapeSection.cs │ │ │ │ ├── hkMemoryMeshTexture.cs │ │ │ │ ├── hkMemoryMeshVertexBuffer.cs │ │ │ │ ├── hkMemoryResourceContainer.cs │ │ │ │ ├── hkMemoryResourceHandle.cs │ │ │ │ ├── hkMemoryResourceHandleExternalLink.cs │ │ │ │ ├── hkMeshBody.cs │ │ │ │ ├── hkMeshBoneIndexMapping.cs │ │ │ │ ├── hkMeshMaterial.cs │ │ │ │ ├── hkMeshSection.cs │ │ │ │ ├── hkMeshSectionCinfo.cs │ │ │ │ ├── hkMeshShape.cs │ │ │ │ ├── hkMeshTexture.cs │ │ │ │ ├── hkMeshTextureRawBufferDescriptor.cs │ │ │ │ ├── hkMeshVertexBuffer.cs │ │ │ │ ├── hkModelerNodeTypeAttribute.cs │ │ │ │ ├── hkMonitorStreamColorTable.cs │ │ │ │ ├── hkMonitorStreamColorTableColorPair.cs │ │ │ │ ├── hkMonitorStreamFrameInfo.cs │ │ │ │ ├── hkMonitorStreamStringMap.cs │ │ │ │ ├── hkMonitorStreamStringMapStringMap.cs │ │ │ │ ├── hkMoppBvTreeShapeBase.cs │ │ │ │ ├── hkMotionState.cs │ │ │ │ ├── hkMultiThreadCheck.cs │ │ │ │ ├── hkMultipleVertexBuffer.cs │ │ │ │ ├── hkMultipleVertexBufferElementInfo.cs │ │ │ │ ├── hkMultipleVertexBufferLockedElement.cs │ │ │ │ ├── hkMultipleVertexBufferVertexBufferInfo.cs │ │ │ │ ├── hkOffsetBitField.cs │ │ │ │ ├── hkOffsetBitFieldStoragehkArrayunsignedinthkContainerHeapAllocator.cs │ │ │ │ ├── hkPackedVector3.cs │ │ │ │ ├── hkPackedVector8.cs │ │ │ │ ├── hkPackfileHeader.cs │ │ │ │ ├── hkPackfileSectionHeader.cs │ │ │ │ ├── hkPostFinishAttribute.cs │ │ │ │ ├── hkQTransform.cs │ │ │ │ ├── hkQTransformf.cs │ │ │ │ ├── hkRangeInt32Attribute.cs │ │ │ │ ├── hkRangeRealAttribute.cs │ │ │ │ ├── hkRefCountedProperties.cs │ │ │ │ ├── hkRefCountedPropertiesEntry.cs │ │ │ │ ├── hkReferencedObject.cs │ │ │ │ ├── hkResourceBase.cs │ │ │ │ ├── hkResourceContainer.cs │ │ │ │ ├── hkResourceHandle.cs │ │ │ │ ├── hkRootLevelContainer.cs │ │ │ │ ├── hkRootLevelContainerNamedVariant.cs │ │ │ │ ├── hkScriptableAttribute.cs │ │ │ │ ├── hkSemanticsAttribute.cs │ │ │ │ ├── hkSetIntFloatPair.cs │ │ │ │ ├── hkSetUint32.cs │ │ │ │ ├── hkSetUint64.cs │ │ │ │ ├── hkSethkIntRealPairhkContainerHeapAllocatorhkMapOperationshkIntRealPair.cs │ │ │ │ ├── hkSetunsignedinthkContainerHeapAllocatorhkMapOperationsunsignedint.cs │ │ │ │ ├── hkSetunsignedlonglonghkContainerHeapAllocatorhkMapOperationsunsignedlonglong.cs │ │ │ │ ├── hkSimpleLocalFrame.cs │ │ │ │ ├── hkSimpleProperty.cs │ │ │ │ ├── hkSimplePropertyValue.cs │ │ │ │ ├── hkSkinBinding.cs │ │ │ │ ├── hkSkinnedMeshShape.cs │ │ │ │ ├── hkSkinnedMeshShapeBoneSection.cs │ │ │ │ ├── hkSkinnedMeshShapeBoneSet.cs │ │ │ │ ├── hkSkinnedMeshShapePart.cs │ │ │ │ ├── hkSkinnedRefMeshShape.cs │ │ │ │ ├── hkSphere.cs │ │ │ │ ├── hkStorageSkinnedMeshShape.cs │ │ │ │ ├── hkStringObject.cs │ │ │ │ ├── hkSweptTransformf.cs │ │ │ │ ├── hkUFloat8.cs │ │ │ │ ├── hkUiAttribute.cs │ │ │ │ ├── hkUuid.cs │ │ │ │ ├── hkVariableTweakingHelper.cs │ │ │ │ ├── hkVariableTweakingHelperBoolVariableInfo.cs │ │ │ │ ├── hkVariableTweakingHelperIntVariableInfo.cs │ │ │ │ ├── hkVariableTweakingHelperRealVariableInfo.cs │ │ │ │ ├── hkVariableTweakingHelperVector4VariableInfo.cs │ │ │ │ ├── hkVertexFormat.cs │ │ │ │ ├── hkVertexFormatElement.cs │ │ │ │ ├── hkWorldMemoryAvailableWatchDog.cs │ │ │ │ ├── hkaAngularReferenceFrame.cs │ │ │ │ ├── hkaAnimatedReferenceFrame.cs │ │ │ │ ├── hkaAnimation.cs │ │ │ │ ├── hkaAnimationBinding.cs │ │ │ │ ├── hkaAnimationContainer.cs │ │ │ │ ├── hkaAnimationPreviewColorContainer.cs │ │ │ │ ├── hkaAnnotationTrack.cs │ │ │ │ ├── hkaAnnotationTrackAnnotation.cs │ │ │ │ ├── hkaBone.cs │ │ │ │ ├── hkaBoneAttachment.cs │ │ │ │ ├── hkaDefaultAnimatedReferenceFrame.cs │ │ │ │ ├── hkaDirectionalReferenceFrame.cs │ │ │ │ ├── hkaFootstepAnalysisInfo.cs │ │ │ │ ├── hkaFootstepAnalysisInfoContainer.cs │ │ │ │ ├── hkaInterleavedUncompressedAnimation.cs │ │ │ │ ├── hkaKeyFrameHierarchyUtility.cs │ │ │ │ ├── hkaKeyFrameHierarchyUtilityControlData.cs │ │ │ │ ├── hkaMeshBinding.cs │ │ │ │ ├── hkaMeshBindingMapping.cs │ │ │ │ ├── hkaParameterizedAnimationReferenceFrame.cs │ │ │ │ ├── hkaParameterizedReferenceFrame.cs │ │ │ │ ├── hkaPredictiveCompressedAnimation.cs │ │ │ │ ├── hkaPredictiveCompressedAnimationTrackCompressionParams.cs │ │ │ │ ├── hkaQuantizedAnimation.cs │ │ │ │ ├── hkaQuantizedAnimationTrackCompressionParams.cs │ │ │ │ ├── hkaRagdollInstance.cs │ │ │ │ ├── hkaReferencePoseAnimation.cs │ │ │ │ ├── hkaSkeleton.cs │ │ │ │ ├── hkaSkeletonLocalFrameOnBone.cs │ │ │ │ ├── hkaSkeletonMapper.cs │ │ │ │ ├── hkaSkeletonMapperData.cs │ │ │ │ ├── hkaSkeletonMapperDataChainMapping.cs │ │ │ │ ├── hkaSkeletonMapperDataPartitionMappingRange.cs │ │ │ │ ├── hkaSkeletonMapperDataSimpleMapping.cs │ │ │ │ ├── hkaSkeletonPartition.cs │ │ │ │ ├── hkaSplineCompressedAnimation.cs │ │ │ │ ├── hkaSplineCompressedAnimationAnimationCompressionParams.cs │ │ │ │ ├── hkaSplineCompressedAnimationTrackCompressionParams.cs │ │ │ │ ├── hkaiAabbTreeNavVolumeMediator.cs │ │ │ │ ├── hkaiAdaptiveRanger.cs │ │ │ │ ├── hkaiAgentTraversalInfo.cs │ │ │ │ ├── hkaiAstarCostModifier.cs │ │ │ │ ├── hkaiAstarEdgeFilter.cs │ │ │ │ ├── hkaiAstarOutputParameters.cs │ │ │ │ ├── hkaiAvoidancePairProperties.cs │ │ │ │ ├── hkaiAvoidancePairPropertiesPairData.cs │ │ │ │ ├── hkaiAvoidanceProperties.cs │ │ │ │ ├── hkaiAvoidanceSolverBoundaryObstacle.cs │ │ │ │ ├── hkaiAvoidanceSolverSphereObstacle.cs │ │ │ │ ├── hkaiCarver.cs │ │ │ │ ├── hkaiCharacter.cs │ │ │ │ ├── hkaiClimbUpAnalyzer.cs │ │ │ │ ├── hkaiConvexHullSilhouetteMerger.cs │ │ │ │ ├── hkaiConvexSilhouetteSet.cs │ │ │ │ ├── hkaiCuttingGeometryInfo.cs │ │ │ │ ├── hkaiDefaultAstarCostModifier.cs │ │ │ │ ├── hkaiDefaultAstarEdgeFilter.cs │ │ │ │ ├── hkaiDirectedGraphExplicitCost.cs │ │ │ │ ├── hkaiDirectedGraphExplicitCostEdge.cs │ │ │ │ ├── hkaiDirectedGraphExplicitCostNode.cs │ │ │ │ ├── hkaiDirectedGraphInstance.cs │ │ │ │ ├── hkaiDirectedGraphInstanceFreeBlockList.cs │ │ │ │ ├── hkaiDropDownAnalyzer.cs │ │ │ │ ├── hkaiDuckUnderAnalyzer.cs │ │ │ │ ├── hkaiDynamicNavMeshQueryMediator.cs │ │ │ │ ├── hkaiDynamicNavVolumeMediator.cs │ │ │ │ ├── hkaiEdgeGeometry.cs │ │ │ │ ├── hkaiEdgeGeometryEdge.cs │ │ │ │ ├── hkaiEdgeGeometryFace.cs │ │ │ │ ├── hkaiEdgePath.cs │ │ │ │ ├── hkaiEdgePathEdge.cs │ │ │ │ ├── hkaiEdgePathFollowingCornerInfo.cs │ │ │ │ ├── hkaiGraphPathSearchParameters.cs │ │ │ │ ├── hkaiHierarchyUtils.cs │ │ │ │ ├── hkaiHierarchyUtilsClusterSettings.cs │ │ │ │ ├── hkaiIntervalPartitionLibrary.cs │ │ │ │ ├── hkaiIntervalPartitionLibraryPartitionRecord.cs │ │ │ │ ├── hkaiInvertedAabbVolume.cs │ │ │ │ ├── hkaiJumpAnalyzer.cs │ │ │ │ ├── hkaiLineOfSightUtilDirectPathInput.cs │ │ │ │ ├── hkaiLineOfSightUtilInputBase.cs │ │ │ │ ├── hkaiLineOfSightUtilLineOfSightInput.cs │ │ │ │ ├── hkaiLineOfSightUtilLineOfSightOutput.cs │ │ │ │ ├── hkaiLocalSteeringInput.cs │ │ │ │ ├── hkaiMaterialPainter.cs │ │ │ │ ├── hkaiMovementProperties.cs │ │ │ │ ├── hkaiNavMesh.cs │ │ │ │ ├── hkaiNavMeshCutter.cs │ │ │ │ ├── hkaiNavMeshCutterMeshInfo.cs │ │ │ │ ├── hkaiNavMeshCutterSavedConnectivity.cs │ │ │ │ ├── hkaiNavMeshEdge.cs │ │ │ │ ├── hkaiNavMeshEdgeMatchingParameters.cs │ │ │ │ ├── hkaiNavMeshFace.cs │ │ │ │ ├── hkaiNavMeshGenerationSettings.cs │ │ │ │ ├── hkaiNavMeshGenerationSettingsMaterialConstructionPair.cs │ │ │ │ ├── hkaiNavMeshGenerationSettingsOverrideSettings.cs │ │ │ │ ├── hkaiNavMeshGenerationSettingsRegionPruningSettings.cs │ │ │ │ ├── hkaiNavMeshGenerationSettingsWallClimbingSettings.cs │ │ │ │ ├── hkaiNavMeshGenerationSnapshot.cs │ │ │ │ ├── hkaiNavMeshInstance.cs │ │ │ │ ├── hkaiNavMeshPathRequestInfo.cs │ │ │ │ ├── hkaiNavMeshPathSearchParameters.cs │ │ │ │ ├── hkaiNavMeshQueryMediator.cs │ │ │ │ ├── hkaiNavMeshSimplificationSnapshot.cs │ │ │ │ ├── hkaiNavMeshSimplificationUtilsExtraVertexSettings.cs │ │ │ │ ├── hkaiNavMeshSimplificationUtilsSettings.cs │ │ │ │ ├── hkaiNavVolume.cs │ │ │ │ ├── hkaiNavVolumeCell.cs │ │ │ │ ├── hkaiNavVolumeEdge.cs │ │ │ │ ├── hkaiNavVolumeGenerationSettings.cs │ │ │ │ ├── hkaiNavVolumeGenerationSettingsChunkSettings.cs │ │ │ │ ├── hkaiNavVolumeGenerationSettingsMaterialConstructionInfo.cs │ │ │ │ ├── hkaiNavVolumeGenerationSettingsMergingSettings.cs │ │ │ │ ├── hkaiNavVolumeGenerationSnapshot.cs │ │ │ │ ├── hkaiNavVolumeInstance.cs │ │ │ │ ├── hkaiNavVolumeInstanceCellInstance.cs │ │ │ │ ├── hkaiNavVolumeMediator.cs │ │ │ │ ├── hkaiNavVolumePathRequestInfo.cs │ │ │ │ ├── hkaiNavVolumePathSearchParameters.cs │ │ │ │ ├── hkaiObstacleGenerator.cs │ │ │ │ ├── hkaiOverlapManager.cs │ │ │ │ ├── hkaiOverlapManagerSection.cs │ │ │ │ ├── hkaiOverlapManagerSectionGeneratorData.cs │ │ │ │ ├── hkaiOverlappingTriangles.cs │ │ │ │ ├── hkaiOverlappingTrianglesSettings.cs │ │ │ │ ├── hkaiPath.cs │ │ │ │ ├── hkaiPathFollowingProperties.cs │ │ │ │ ├── hkaiPathPathPoint.cs │ │ │ │ ├── hkaiPathfindingUtil.cs │ │ │ │ ├── hkaiPathfindingUtilFindGraphPathInput.cs │ │ │ │ ├── hkaiPathfindingUtilFindPathInput.cs │ │ │ │ ├── hkaiPathfindingUtilFindPathOutput.cs │ │ │ │ ├── hkaiPersistentEdgeKey.cs │ │ │ │ ├── hkaiPersistentFaceKey.cs │ │ │ │ ├── hkaiPhysics2012BodyObstacleGenerator.cs │ │ │ │ ├── hkaiPhysics2012BodySilhouetteGenerator.cs │ │ │ │ ├── hkaiPhysics2012ShapeVolume.cs │ │ │ │ ├── hkaiPhysicsBodyObstacleGenerator.cs │ │ │ │ ├── hkaiPhysicsBodySilhouetteGenerator.cs │ │ │ │ ├── hkaiPhysicsBodySilhouetteGeneratorBase.cs │ │ │ │ ├── hkaiPhysicsShapeVolume.cs │ │ │ │ ├── hkaiPlaneVolume.cs │ │ │ │ ├── hkaiPointCloudSilhouetteGenerator.cs │ │ │ │ ├── hkaiReferenceFrame.cs │ │ │ │ ├── hkaiReferenceFrameAndExtrusion.cs │ │ │ │ ├── hkaiSearchParameters.cs │ │ │ │ ├── hkaiSearchParametersBufferSizes.cs │ │ │ │ ├── hkaiSearchParametersSearchBuffers.cs │ │ │ │ ├── hkaiSilhouetteGenerationParameters.cs │ │ │ │ ├── hkaiSilhouetteGenerator.cs │ │ │ │ ├── hkaiSilhouetteGeneratorSectionContext.cs │ │ │ │ ├── hkaiSilhouetteMerger.cs │ │ │ │ ├── hkaiSilhouetteRecorderGraphLoadedEvent.cs │ │ │ │ ├── hkaiSilhouetteRecorderGraphUnloadedEvent.cs │ │ │ │ ├── hkaiSilhouetteRecorderInstanceLoadedEvent.cs │ │ │ │ ├── hkaiSilhouetteRecorderInstanceUnloadedEvent.cs │ │ │ │ ├── hkaiSilhouetteRecorderReplayEvent.cs │ │ │ │ ├── hkaiSilhouetteRecorderSilhouettesSteppedEvent.cs │ │ │ │ ├── hkaiSilhouetteRecorderVolumeLoadedEvent.cs │ │ │ │ ├── hkaiSilhouetteRecorderVolumeUnloadedEvent.cs │ │ │ │ ├── hkaiSilhouetteRecorderWorldConnectedEvent.cs │ │ │ │ ├── hkaiSilhouetteReferenceFrame.cs │ │ │ │ ├── hkaiSimpleObstacleGenerator.cs │ │ │ │ ├── hkaiSimpleSilhouetteMerger.cs │ │ │ │ ├── hkaiSplitGenerationSnapshot.cs │ │ │ │ ├── hkaiSplitGenerationUtils.cs │ │ │ │ ├── hkaiSplitGenerationUtilsSettings.cs │ │ │ │ ├── hkaiStaticTreeNavMeshQueryMediator.cs │ │ │ │ ├── hkaiStreamingCollection.cs │ │ │ │ ├── hkaiStreamingCollectionInstanceInfo.cs │ │ │ │ ├── hkaiStreamingSet.cs │ │ │ │ ├── hkaiStreamingSetGraphConnection.cs │ │ │ │ ├── hkaiStreamingSetNavMeshConnection.cs │ │ │ │ ├── hkaiStreamingSetVolumeConnection.cs │ │ │ │ ├── hkaiTraversalAnalysisInput.cs │ │ │ │ ├── hkaiTraversalAnalysisInputSection.cs │ │ │ │ ├── hkaiTraversalAnalysisSettings.cs │ │ │ │ ├── hkaiTraversalAnalyzer.cs │ │ │ │ ├── hkaiUserEdgePairArray.cs │ │ │ │ ├── hkaiUserEdgeSetupArray.cs │ │ │ │ ├── hkaiUserEdgeUtils.cs │ │ │ │ ├── hkaiUserEdgeUtilsObb.cs │ │ │ │ ├── hkaiUserEdgeUtilsUserEdgePair.cs │ │ │ │ ├── hkaiUserEdgeUtilsUserEdgeSetup.cs │ │ │ │ ├── hkaiVaultAnalyzer.cs │ │ │ │ ├── hkaiVolume.cs │ │ │ │ ├── hkaiVolumePathfindingUtil.cs │ │ │ │ ├── hkaiVolumePathfindingUtilFindPathInput.cs │ │ │ │ ├── hkaiVolumePathfindingUtilFindPathOutput.cs │ │ │ │ ├── hkaiWorld.cs │ │ │ │ ├── hkaiWorldCharacterStepSerializableContext.cs │ │ │ │ ├── hkbAiControlCancelPathCommand.cs │ │ │ │ ├── hkbAiControlControlData.cs │ │ │ │ ├── hkbAiControlControlDataBlendable.cs │ │ │ │ ├── hkbAiControlControlDataNonBlendable.cs │ │ │ │ ├── hkbAiControlPathToCommand.cs │ │ │ │ ├── hkbAlignBoneModifier.cs │ │ │ │ ├── hkbAnimatedSkeletonGenerator.cs │ │ │ │ ├── hkbAssetBundle.cs │ │ │ │ ├── hkbAssetBundleStringData.cs │ │ │ │ ├── hkbAttachmentModifier.cs │ │ │ │ ├── hkbAttachmentSetup.cs │ │ │ │ ├── hkbAttributeModifier.cs │ │ │ │ ├── hkbAttributeModifierAssignment.cs │ │ │ │ ├── hkbAuxiliaryNodeInfo.cs │ │ │ │ ├── hkbBehaviorEventsInfo.cs │ │ │ │ ├── hkbBehaviorGraph.cs │ │ │ │ ├── hkbBehaviorGraphData.cs │ │ │ │ ├── hkbBehaviorGraphInternalState.cs │ │ │ │ ├── hkbBehaviorGraphInternalStateInfo.cs │ │ │ │ ├── hkbBehaviorGraphStringData.cs │ │ │ │ ├── hkbBehaviorInfo.cs │ │ │ │ ├── hkbBehaviorInfoIdToNamePair.cs │ │ │ │ ├── hkbBehaviorReferenceGenerator.cs │ │ │ │ ├── hkbBindable.cs │ │ │ │ ├── hkbBlendCurveUtils.cs │ │ │ │ ├── hkbBlenderGenerator.cs │ │ │ │ ├── hkbBlenderGeneratorChild.cs │ │ │ │ ├── hkbBlenderGeneratorChildInternalState.cs │ │ │ │ ├── hkbBlenderGeneratorInternalState.cs │ │ │ │ ├── hkbBlendingTransitionEffect.cs │ │ │ │ ├── hkbBlendingTransitionEffectInternalState.cs │ │ │ │ ├── hkbBoneIndexArray.cs │ │ │ │ ├── hkbBoneWeightArray.cs │ │ │ │ ├── hkbBoolVariableSequencedData.cs │ │ │ │ ├── hkbBoolVariableSequencedDataSample.cs │ │ │ │ ├── hkbCameraShakeEventPayload.cs │ │ │ │ ├── hkbCameraVariablesChangedCommand.cs │ │ │ │ ├── hkbCharacter.cs │ │ │ │ ├── hkbCharacterAddedInfo.cs │ │ │ │ ├── hkbCharacterControlCommand.cs │ │ │ │ ├── hkbCharacterControllerModifier.cs │ │ │ │ ├── hkbCharacterControllerModifierControlData.cs │ │ │ │ ├── hkbCharacterControllerModifierInternalState.cs │ │ │ │ ├── hkbCharacterControllerSetup.cs │ │ │ │ ├── hkbCharacterData.cs │ │ │ │ ├── hkbCharacterInfo.cs │ │ │ │ ├── hkbCharacterSelectedInfo.cs │ │ │ │ ├── hkbCharacterSetup.cs │ │ │ │ ├── hkbCharacterSkinInfo.cs │ │ │ │ ├── hkbCharacterSteppedInfo.cs │ │ │ │ ├── hkbCharacterStringData.cs │ │ │ │ ├── hkbCharacterStringDataFileNameMeshNamePair.cs │ │ │ │ ├── hkbClientCharacterState.cs │ │ │ │ ├── hkbClipGenerator.cs │ │ │ │ ├── hkbClipGeneratorEcho.cs │ │ │ │ ├── hkbClipGeneratorInternalState.cs │ │ │ │ ├── hkbClipTrigger.cs │ │ │ │ ├── hkbClipTriggerArray.cs │ │ │ │ ├── hkbCombineTransformsModifier.cs │ │ │ │ ├── hkbCombineTransformsModifierInternalState.cs │ │ │ │ ├── hkbCompiledExpressionSet.cs │ │ │ │ ├── hkbCompiledExpressionSetToken.cs │ │ │ │ ├── hkbComputeDirectionModifier.cs │ │ │ │ ├── hkbComputeDirectionModifierInternalState.cs │ │ │ │ ├── hkbComputeRotationFromAxisAngleModifier.cs │ │ │ │ ├── hkbComputeRotationFromAxisAngleModifierInternalState.cs │ │ │ │ ├── hkbComputeRotationToTargetModifier.cs │ │ │ │ ├── hkbComputeRotationToTargetModifierInternalState.cs │ │ │ │ ├── hkbComputeWorldFromModelModifier.cs │ │ │ │ ├── hkbCondition.cs │ │ │ │ ├── hkbConstraintSetup.cs │ │ │ │ ├── hkbContext.cs │ │ │ │ ├── hkbCustomIdSelector.cs │ │ │ │ ├── hkbCustomTestGenerator.cs │ │ │ │ ├── hkbCustomTestGeneratorAnnotatedTypes.cs │ │ │ │ ├── hkbCustomTestGeneratorBoneTypes.cs │ │ │ │ ├── hkbCustomTestGeneratorComplexTypes.cs │ │ │ │ ├── hkbCustomTestGeneratorHiddenTypes.cs │ │ │ │ ├── hkbCustomTestGeneratorNestedTypes.cs │ │ │ │ ├── hkbCustomTestGeneratorNestedTypesBase.cs │ │ │ │ ├── hkbCustomTestGeneratorSimpleTypes.cs │ │ │ │ ├── hkbDampingModifier.cs │ │ │ │ ├── hkbDampingModifierInternalState.cs │ │ │ │ ├── hkbDefaultMessageLog.cs │ │ │ │ ├── hkbDelayedModifier.cs │ │ │ │ ├── hkbDelayedModifierInternalState.cs │ │ │ │ ├── hkbDetectCloseToGroundModifier.cs │ │ │ │ ├── hkbDetectCloseToGroundModifierInternalState.cs │ │ │ │ ├── hkbDockingGenerator.cs │ │ │ │ ├── hkbDockingGeneratorInternalState.cs │ │ │ │ ├── hkbEvaluateExpressionModifier.cs │ │ │ │ ├── hkbEvaluateExpressionModifierInternalExpressionData.cs │ │ │ │ ├── hkbEvaluateExpressionModifierInternalState.cs │ │ │ │ ├── hkbEvaluateHandleModifier.cs │ │ │ │ ├── hkbEvent.cs │ │ │ │ ├── hkbEventBase.cs │ │ │ │ ├── hkbEventDrivenModifier.cs │ │ │ │ ├── hkbEventDrivenModifierInternalState.cs │ │ │ │ ├── hkbEventInfo.cs │ │ │ │ ├── hkbEventPayload.cs │ │ │ │ ├── hkbEventPayloadList.cs │ │ │ │ ├── hkbEventProperty.cs │ │ │ │ ├── hkbEventRaisedInfo.cs │ │ │ │ ├── hkbEventRangeData.cs │ │ │ │ ├── hkbEventRangeDataArray.cs │ │ │ │ ├── hkbEventSequencedData.cs │ │ │ │ ├── hkbEventSequencedDataSequencedEvent.cs │ │ │ │ ├── hkbEventsFromRangeModifier.cs │ │ │ │ ├── hkbEventsFromRangeModifierInternalState.cs │ │ │ │ ├── hkbExpressionCondition.cs │ │ │ │ ├── hkbExpressionData.cs │ │ │ │ ├── hkbExpressionDataArray.cs │ │ │ │ ├── hkbExtractRagdollPoseModifier.cs │ │ │ │ ├── hkbExtrapolatingTransitionEffect.cs │ │ │ │ ├── hkbExtrapolatingTransitionEffectInternalState.cs │ │ │ │ ├── hkbFootIkControlData.cs │ │ │ │ ├── hkbFootIkControlsModifier.cs │ │ │ │ ├── hkbFootIkControlsModifierLeg.cs │ │ │ │ ├── hkbFootIkDriverInfo.cs │ │ │ │ ├── hkbFootIkDriverInfoLeg.cs │ │ │ │ ├── hkbFootIkGains.cs │ │ │ │ ├── hkbFootIkModifier.cs │ │ │ │ ├── hkbFootIkModifierInternalLegData.cs │ │ │ │ ├── hkbFootIkModifierLeg.cs │ │ │ │ ├── hkbGenerator.cs │ │ │ │ ├── hkbGeneratorOutputListener.cs │ │ │ │ ├── hkbGeneratorPartitionInfo.cs │ │ │ │ ├── hkbGeneratorSyncInfo.cs │ │ │ │ ├── hkbGeneratorSyncInfoActiveInterval.cs │ │ │ │ ├── hkbGeneratorSyncInfoSyncPoint.cs │ │ │ │ ├── hkbGeneratorTransitionEffect.cs │ │ │ │ ├── hkbGeneratorTransitionEffectInternalState.cs │ │ │ │ ├── hkbGetHandleOnBoneModifier.cs │ │ │ │ ├── hkbGetUpModifier.cs │ │ │ │ ├── hkbGetUpModifierInternalState.cs │ │ │ │ ├── hkbGetWorldFromModelModifier.cs │ │ │ │ ├── hkbGetWorldFromModelModifierInternalState.cs │ │ │ │ ├── hkbGravityModifier.cs │ │ │ │ ├── hkbHandIkControlData.cs │ │ │ │ ├── hkbHandIkControlsModifier.cs │ │ │ │ ├── hkbHandIkControlsModifierHand.cs │ │ │ │ ├── hkbHandIkDriverInfo.cs │ │ │ │ ├── hkbHandIkDriverInfoHand.cs │ │ │ │ ├── hkbHandIkModifier.cs │ │ │ │ ├── hkbHandIkModifierHand.cs │ │ │ │ ├── hkbHandle.cs │ │ │ │ ├── hkbHoldFromBlendingTransitionEffect.cs │ │ │ │ ├── hkbIntEventPayload.cs │ │ │ │ ├── hkbIntVariableSequencedData.cs │ │ │ │ ├── hkbIntVariableSequencedDataSample.cs │ │ │ │ ├── hkbJigglerGroup.cs │ │ │ │ ├── hkbJigglerModifier.cs │ │ │ │ ├── hkbJigglerModifierInternalState.cs │ │ │ │ ├── hkbKeyFrameControlData.cs │ │ │ │ ├── hkbKeyframeBonesModifier.cs │ │ │ │ ├── hkbKeyframeBonesModifierKeyframeInfo.cs │ │ │ │ ├── hkbLayer.cs │ │ │ │ ├── hkbLayerGenerator.cs │ │ │ │ ├── hkbLayerGeneratorInternalState.cs │ │ │ │ ├── hkbLayerGeneratorLayerInternalState.cs │ │ │ │ ├── hkbLeanRocketboxCharacterController.cs │ │ │ │ ├── hkbLeanRocketboxCharacterControllerInternalState.cs │ │ │ │ ├── hkbLinkedSymbolInfo.cs │ │ │ │ ├── hkbLookAtModifier.cs │ │ │ │ ├── hkbLookAtModifierInternalState.cs │ │ │ │ ├── hkbManualSelectorGenerator.cs │ │ │ │ ├── hkbManualSelectorGeneratorInternalState.cs │ │ │ │ ├── hkbManualSelectorTransitionEffect.cs │ │ │ │ ├── hkbManualSelectorTransitionEffectInternalState.cs │ │ │ │ ├── hkbMessageLog.cs │ │ │ │ ├── hkbMirrorModifier.cs │ │ │ │ ├── hkbMirroredSkeletonInfo.cs │ │ │ │ ├── hkbModifier.cs │ │ │ │ ├── hkbModifierGenerator.cs │ │ │ │ ├── hkbModifierList.cs │ │ │ │ ├── hkbModifierWrapper.cs │ │ │ │ ├── hkbMoveBoneAttachmentModifier.cs │ │ │ │ ├── hkbMoveCharacterModifier.cs │ │ │ │ ├── hkbMoveCharacterModifierInternalState.cs │ │ │ │ ├── hkbNamedEventPayload.cs │ │ │ │ ├── hkbNamedIntEventPayload.cs │ │ │ │ ├── hkbNamedRealEventPayload.cs │ │ │ │ ├── hkbNamedStringEventPayload.cs │ │ │ │ ├── hkbNode.cs │ │ │ │ ├── hkbNodeInternalStateInfo.cs │ │ │ │ ├── hkbParametricMotionGenerator.cs │ │ │ │ ├── hkbParticleSystemEventPayload.cs │ │ │ │ ├── hkbPinBonesGenerator.cs │ │ │ │ ├── hkbPoseMatchingGenerator.cs │ │ │ │ ├── hkbPoseMatchingGeneratorInternalState.cs │ │ │ │ ├── hkbPoseStoringGeneratorOutputListener.cs │ │ │ │ ├── hkbPoseStoringGeneratorOutputListenerStoredPose.cs │ │ │ │ ├── hkbPoweredRagdollControlData.cs │ │ │ │ ├── hkbPoweredRagdollControlsModifier.cs │ │ │ │ ├── hkbProceduralBlenderGenerator.cs │ │ │ │ ├── hkbProjectData.cs │ │ │ │ ├── hkbProjectStringData.cs │ │ │ │ ├── hkbRadialSelectorGenerator.cs │ │ │ │ ├── hkbRadialSelectorGeneratorGeneratorInfo.cs │ │ │ │ ├── hkbRadialSelectorGeneratorGeneratorPair.cs │ │ │ │ ├── hkbRagdollControllerSetup.cs │ │ │ │ ├── hkbRagdollInterface.cs │ │ │ │ ├── hkbRaiseEventCommand.cs │ │ │ │ ├── hkbRealEventPayload.cs │ │ │ │ ├── hkbRealVariableSequencedData.cs │ │ │ │ ├── hkbRealVariableSequencedDataSample.cs │ │ │ │ ├── hkbRebuildScriptsCommand.cs │ │ │ │ ├── hkbReferencePoseGenerator.cs │ │ │ │ ├── hkbReferencedGeneratorSyncInfo.cs │ │ │ │ ├── hkbRigidBodyRagdollControlData.cs │ │ │ │ ├── hkbRigidBodyRagdollControlsModifier.cs │ │ │ │ ├── hkbRigidBodySetup.cs │ │ │ │ ├── hkbRocketboxCharacterController.cs │ │ │ │ ├── hkbRocketboxCharacterControllerInternalState.cs │ │ │ │ ├── hkbRoleAttribute.cs │ │ │ │ ├── hkbRotateCharacterModifier.cs │ │ │ │ ├── hkbRotateCharacterModifierInternalState.cs │ │ │ │ ├── hkbScriptCondition.cs │ │ │ │ ├── hkbScriptGenerator.cs │ │ │ │ ├── hkbSenseHandleModifier.cs │ │ │ │ ├── hkbSenseHandleModifierRange.cs │ │ │ │ ├── hkbSequence.cs │ │ │ │ ├── hkbSequenceInternalState.cs │ │ │ │ ├── hkbSequenceStringData.cs │ │ │ │ ├── hkbSequencedData.cs │ │ │ │ ├── hkbSetBehaviorCommand.cs │ │ │ │ ├── hkbSetLocalTimeOfClipGeneratorCommand.cs │ │ │ │ ├── hkbSetNodePropertyCommand.cs │ │ │ │ ├── hkbSetSelectedCharacterCommand.cs │ │ │ │ ├── hkbSetWordVariableCommand.cs │ │ │ │ ├── hkbSetWorldFromModelModifier.cs │ │ │ │ ├── hkbShapeSetup.cs │ │ │ │ ├── hkbSimulationControlCommand.cs │ │ │ │ ├── hkbSimulationStateInfo.cs │ │ │ │ ├── hkbStateChooser.cs │ │ │ │ ├── hkbStateChooserWrapper.cs │ │ │ │ ├── hkbStateDependentModifier.cs │ │ │ │ ├── hkbStateListener.cs │ │ │ │ ├── hkbStateMachine.cs │ │ │ │ ├── hkbStateMachineActiveTransitionInfo.cs │ │ │ │ ├── hkbStateMachineDelayedTransitionInfo.cs │ │ │ │ ├── hkbStateMachineEventPropertyArray.cs │ │ │ │ ├── hkbStateMachineInternalState.cs │ │ │ │ ├── hkbStateMachineNestedStateMachineData.cs │ │ │ │ ├── hkbStateMachineProspectiveTransitionInfo.cs │ │ │ │ ├── hkbStateMachineStateInfo.cs │ │ │ │ ├── hkbStateMachineTimeInterval.cs │ │ │ │ ├── hkbStateMachineTransitionInfo.cs │ │ │ │ ├── hkbStateMachineTransitionInfoArray.cs │ │ │ │ ├── hkbStateMachineTransitionInfoReference.cs │ │ │ │ ├── hkbStringCondition.cs │ │ │ │ ├── hkbStringEventPayload.cs │ │ │ │ ├── hkbTestIdSelector.cs │ │ │ │ ├── hkbTimerModifier.cs │ │ │ │ ├── hkbTimerModifierInternalState.cs │ │ │ │ ├── hkbToolNodeType.cs │ │ │ │ ├── hkbTransformVectorModifier.cs │ │ │ │ ├── hkbTransformVectorModifierInternalState.cs │ │ │ │ ├── hkbTransitionEffect.cs │ │ │ │ ├── hkbTwistModifier.cs │ │ │ │ ├── hkbVariableBindingSet.cs │ │ │ │ ├── hkbVariableBindingSetBinding.cs │ │ │ │ ├── hkbVariableBounds.cs │ │ │ │ ├── hkbVariableInfo.cs │ │ │ │ ├── hkbVariableValue.cs │ │ │ │ ├── hkbVariableValueSet.cs │ │ │ │ ├── hkbWorldEnums.cs │ │ │ │ ├── hkbWorldFromModelModeData.cs │ │ │ │ ├── hkbnpRagdollInterface.cs │ │ │ │ ├── hkbpBalanceModifier.cs │ │ │ │ ├── hkbpBalanceModifierStepInfo.cs │ │ │ │ ├── hkbpBalanceRadialSelectorGenerator.cs │ │ │ │ ├── hkbpCatchFallModifier.cs │ │ │ │ ├── hkbpCatchFallModifierHand.cs │ │ │ │ ├── hkbpCheckBalanceModifier.cs │ │ │ │ ├── hkbpCheckRagdollSpeedModifier.cs │ │ │ │ ├── hkbpConstrainRigidBodyModifier.cs │ │ │ │ ├── hkbpControlledReachModifier.cs │ │ │ │ ├── hkbpFaceTargetModifier.cs │ │ │ │ ├── hkbpMoveBoneTowardTargetModifier.cs │ │ │ │ ├── hkbpReachModifier.cs │ │ │ │ ├── hkbpReachModifierHand.cs │ │ │ │ ├── hkbpReachTowardTargetModifier.cs │ │ │ │ ├── hkbpReachTowardTargetModifierHand.cs │ │ │ │ ├── hkbpTarget.cs │ │ │ │ ├── hkbpTargetRigidBodyModifier.cs │ │ │ │ ├── hkcdAdf.cs │ │ │ │ ├── hkcdDynamicAabbTree.cs │ │ │ │ ├── hkcdDynamicTreeAnisotropicMetric.cs │ │ │ │ ├── hkcdDynamicTreeBalanceMetric.cs │ │ │ │ ├── hkcdDynamicTreeCentroidMetric.cs │ │ │ │ ├── hkcdDynamicTreeCodec18.cs │ │ │ │ ├── hkcdDynamicTreeCodec32.cs │ │ │ │ ├── hkcdDynamicTreeCodecInt16.cs │ │ │ │ ├── hkcdDynamicTreeCodecInt16IntAabb.cs │ │ │ │ ├── hkcdDynamicTreeCodecRawUint.cs │ │ │ │ ├── hkcdDynamicTreeCodecRawUlong.cs │ │ │ │ ├── hkcdDynamicTreeCodecRawunsignedint.cs │ │ │ │ ├── hkcdDynamicTreeCodecRawunsignedlong.cs │ │ │ │ ├── hkcdDynamicTreeDefaultDynamicStoragehkcdDynamicTreeCodec32.cs │ │ │ │ ├── hkcdDynamicTreeDefaultDynamicStoragehkcdDynamicTreeCodecInt16.cs │ │ │ │ ├── hkcdDynamicTreeDefaultDynamicStoragehkcdDynamicTreeCodecRawUint.cs │ │ │ │ ├── hkcdDynamicTreeDefaultDynamicStoragehkcdDynamicTreeCodecRawUlong.cs │ │ │ │ ├── hkcdDynamicTreeDefaultTree32Storage.cs │ │ │ │ ├── hkcdDynamicTreeDefaultTree48Storage.cs │ │ │ │ ├── hkcdDynamicTreeDefaultTreeInt16Storage.cs │ │ │ │ ├── hkcdDynamicTreeDefaultTreePtrStorage.cs │ │ │ │ ├── hkcdDynamicTreeDynamicStorage0hkcdDynamicTreeAnisotropicMetrichkcdDynamicTreeCodec32.cs │ │ │ │ ├── hkcdDynamicTreeDynamicStorage0hkcdDynamicTreeAnisotropicMetrichkcdDynamicTreeCodecInt16.cs │ │ │ │ ├── hkcdDynamicTreeDynamicStorage0hkcdDynamicTreeAnisotropicMetrichkcdDynamicTreeCodecRawUint.cs │ │ │ │ ├── hkcdDynamicTreeDynamicStorage0hkcdDynamicTreeAnisotropicMetrichkcdDynamicTreeCodecRawUlong.cs │ │ │ │ ├── hkcdDynamicTreeDynamicStorage16.cs │ │ │ │ ├── hkcdDynamicTreeDynamicStorage32.cs │ │ │ │ ├── hkcdDynamicTreeDynamicStorageInt16.cs │ │ │ │ ├── hkcdDynamicTreeDynamicStoragePtr.cs │ │ │ │ ├── hkcdDynamicTreeTreehkcdDynamicTreeDynamicStorage16.cs │ │ │ │ ├── hkcdDynamicTreeTreehkcdDynamicTreeDynamicStorage32.cs │ │ │ │ ├── hkcdDynamicTreeTreehkcdDynamicTreeDynamicStorageInt16.cs │ │ │ │ ├── hkcdDynamicTreeTreehkcdDynamicTreeDynamicStoragePtr.cs │ │ │ │ ├── hkcdFourAabb.cs │ │ │ │ ├── hkcdPlanarCsgOperand.cs │ │ │ │ ├── hkcdPlanarCsgOperandGeomSource.cs │ │ │ │ ├── hkcdPlanarEntity.cs │ │ │ │ ├── hkcdPlanarGeometry.cs │ │ │ │ ├── hkcdPlanarGeometryPlanesCollection.cs │ │ │ │ ├── hkcdPlanarGeometryPolygonCollection.cs │ │ │ │ ├── hkcdPlanarGeometryPrimitivesCollection28.cs │ │ │ │ ├── hkcdPlanarGeometryPrimitivesPlane.cs │ │ │ │ ├── hkcdPlanarSolid.cs │ │ │ │ ├── hkcdPlanarSolidNode.cs │ │ │ │ ├── hkcdPlanarSolidNodeStorage.cs │ │ │ │ ├── hkcdShape.cs │ │ │ │ ├── hkcdShapeDispatchType.cs │ │ │ │ ├── hkcdShapeInfoCodecType.cs │ │ │ │ ├── hkcdShapeType.cs │ │ │ │ ├── hkcdSimdTree.cs │ │ │ │ ├── hkcdSimdTreeNode.cs │ │ │ │ ├── hkcdStaticAabbTree.cs │ │ │ │ ├── hkcdStaticMeshTreeBase.cs │ │ │ │ ├── hkcdStaticMeshTreeBasePrimitive.cs │ │ │ │ ├── hkcdStaticMeshTreeBasePrimitiveDataRunBasehknpCompressedMeshShapeTreeDataRunData.cs │ │ │ │ ├── hkcdStaticMeshTreeBasePrimitiveDataRunBaseunsignedint.cs │ │ │ │ ├── hkcdStaticMeshTreeBasePrimitiveDataRunBaseunsignedshort.cs │ │ │ │ ├── hkcdStaticMeshTreeBaseSection.cs │ │ │ │ ├── hkcdStaticMeshTreeBaseSectionDataRuns.cs │ │ │ │ ├── hkcdStaticMeshTreeBaseSectionPrimitives.cs │ │ │ │ ├── hkcdStaticMeshTreeBaseSectionSharedVertices.cs │ │ │ │ ├── hkcdStaticMeshTreeDefaultDataRun.cs │ │ │ │ ├── hkcdStaticMeshTreehkcdStaticMeshTreeCommonConfigunsignedintunsignedlonglong1121hknpCompressedMeshShapeTreeDataRun.cs │ │ │ │ ├── hkcdStaticMeshTreehkcdStaticMeshTreeCommonConfigunsignedintunsignedlonglong1121hkpBvCompressedMeshShapeTreeDataRun.cs │ │ │ │ ├── hkcdStaticPvs.cs │ │ │ │ ├── hkcdStaticPvsBlockHeader.cs │ │ │ │ ├── hkcdStaticTreeCodec3Axis.cs │ │ │ │ ├── hkcdStaticTreeCodec3Axis4.cs │ │ │ │ ├── hkcdStaticTreeCodec3Axis5.cs │ │ │ │ ├── hkcdStaticTreeCodec3Axis6.cs │ │ │ │ ├── hkcdStaticTreeCodecRaw.cs │ │ │ │ ├── hkcdStaticTreeDefaultTreeStorage32.cs │ │ │ │ ├── hkcdStaticTreeDefaultTreeStorage4.cs │ │ │ │ ├── hkcdStaticTreeDefaultTreeStorage5.cs │ │ │ │ ├── hkcdStaticTreeDefaultTreeStorage6.cs │ │ │ │ ├── hkcdStaticTreeDynamicStorage32.cs │ │ │ │ ├── hkcdStaticTreeDynamicStorage4.cs │ │ │ │ ├── hkcdStaticTreeDynamicStorage5.cs │ │ │ │ ├── hkcdStaticTreeDynamicStorage6.cs │ │ │ │ ├── hkcdStaticTreeDynamicStoragehkcdStaticTreeCodec3Axis4.cs │ │ │ │ ├── hkcdStaticTreeDynamicStoragehkcdStaticTreeCodec3Axis5.cs │ │ │ │ ├── hkcdStaticTreeDynamicStoragehkcdStaticTreeCodec3Axis6.cs │ │ │ │ ├── hkcdStaticTreeDynamicStoragehkcdStaticTreeCodecRaw.cs │ │ │ │ ├── hkcdStaticTreeTreehkcdStaticTreeDynamicStorage32.cs │ │ │ │ ├── hkcdStaticTreeTreehkcdStaticTreeDynamicStorage4.cs │ │ │ │ ├── hkcdStaticTreeTreehkcdStaticTreeDynamicStorage5.cs │ │ │ │ ├── hkcdStaticTreeTreehkcdStaticTreeDynamicStorage6.cs │ │ │ │ ├── hknpAction.cs │ │ │ │ ├── hknpArrayAction.cs │ │ │ │ ├── hknpBallGun.cs │ │ │ │ ├── hknpBinaryAction.cs │ │ │ │ ├── hknpBody.cs │ │ │ │ ├── hknpBodyCinfo.cs │ │ │ │ ├── hknpBodyQuality.cs │ │ │ │ ├── hknpBodyQualityLibrary.cs │ │ │ │ ├── hknpBodyReference.cs │ │ │ │ ├── hknpBreakableConstraintData.cs │ │ │ │ ├── hknpBridgeConstraintAtom.cs │ │ │ │ ├── hknpBroadPhaseConfig.cs │ │ │ │ ├── hknpBroadPhaseConfigLayer.cs │ │ │ │ ├── hknpCapsuleShape.cs │ │ │ │ ├── hknpCharacterProxyCinfo.cs │ │ │ │ ├── hknpCharacterRigidBodyCinfo.cs │ │ │ │ ├── hknpCircularSurfaceVelocity.cs │ │ │ │ ├── hknpCollisionDispatchType.cs │ │ │ │ ├── hknpCollisionFilter.cs │ │ │ │ ├── hknpCompositeShape.cs │ │ │ │ ├── hknpCompoundShape.cs │ │ │ │ ├── hknpCompoundShapeInternalsKeyMask.cs │ │ │ │ ├── hknpCompoundShapeKeyMask.cs │ │ │ │ ├── hknpCompressedHeightFieldShape.cs │ │ │ │ ├── hknpCompressedMeshShape.cs │ │ │ │ ├── hknpCompressedMeshShapeData.cs │ │ │ │ ├── hknpCompressedMeshShapeInternalsKeyMask.cs │ │ │ │ ├── hknpCompressedMeshShapeTree.cs │ │ │ │ ├── hknpCompressedMeshShapeTreeDataRun.cs │ │ │ │ ├── hknpCompressedMeshShapeTreeDataRunData.cs │ │ │ │ ├── hknpConstraint.cs │ │ │ │ ├── hknpConstraintCinfo.cs │ │ │ │ ├── hknpConstraintCollisionFilter.cs │ │ │ │ ├── hknpConvexPolytopeShape.cs │ │ │ │ ├── hknpConvexPolytopeShapeFace.cs │ │ │ │ ├── hknpConvexShape.cs │ │ │ │ ├── hknpDecoratorShape.cs │ │ │ │ ├── hknpDefaultBroadPhaseConfig.cs │ │ │ │ ├── hknpDefaultExternMeshShapeGeometry.cs │ │ │ │ ├── hknpDestructionShapeProperties.cs │ │ │ │ ├── hknpDisableCollisionFilter.cs │ │ │ │ ├── hknpDummyShape.cs │ │ │ │ ├── hknpDynamicCompoundShape.cs │ │ │ │ ├── hknpDynamicCompoundShapeData.cs │ │ │ │ ├── hknpDynamicCompoundShapeTree.cs │ │ │ │ ├── hknpExternMeshShape.cs │ │ │ │ ├── hknpExternMeshShapeData.cs │ │ │ │ ├── hknpExternMeshShapeGeometry.cs │ │ │ │ ├── hknpFirstPersonGun.cs │ │ │ │ ├── hknpGroupCollisionFilter.cs │ │ │ │ ├── hknpGroupCollisionFilterBasehknpGroupCollisionFilterTypesConfig55516.cs │ │ │ │ ├── hknpHeightFieldShape.cs │ │ │ │ ├── hknpLinearSurfaceVelocity.cs │ │ │ │ ├── hknpLodShape.cs │ │ │ │ ├── hknpLodShapeLevelOfDetailInfo.cs │ │ │ │ ├── hknpMalleableConstraintData.cs │ │ │ │ ├── hknpMaskedShape.cs │ │ │ │ ├── hknpMaskedShapeMaskWrapper.cs │ │ │ │ ├── hknpMaterial.cs │ │ │ │ ├── hknpMaterialDescriptor.cs │ │ │ │ ├── hknpMaterialLibrary.cs │ │ │ │ ├── hknpMaterialPalette.cs │ │ │ │ ├── hknpMinMaxQuadTree.cs │ │ │ │ ├── hknpMinMaxQuadTreeMinMaxLevel.cs │ │ │ │ ├── hknpMotion.cs │ │ │ │ ├── hknpMotionCinfo.cs │ │ │ │ ├── hknpMotionProperties.cs │ │ │ │ ├── hknpMotionPropertiesLibrary.cs │ │ │ │ ├── hknpPairCollisionFilter.cs │ │ │ │ ├── hknpPairCollisionFilterMapPairFilterKeyOverrideType.cs │ │ │ │ ├── hknpPhysicsSceneData.cs │ │ │ │ ├── hknpPhysicsSystemData.cs │ │ │ │ ├── hknpProjectileGun.cs │ │ │ │ ├── hknpRagdollData.cs │ │ │ │ ├── hknpRagdollKeyFrameHierarchyUtilityControlData.cs │ │ │ │ ├── hknpRefMaterial.cs │ │ │ │ ├── hknpRefWorldCinfo.cs │ │ │ │ ├── hknpScaledConvexShape.cs │ │ │ │ ├── hknpScaledConvexShapeBase.cs │ │ │ │ ├── hknpShape.cs │ │ │ │ ├── hknpShapeInstance.cs │ │ │ │ ├── hknpShapeKeyMask.cs │ │ │ │ ├── hknpShapeMassProperties.cs │ │ │ │ ├── hknpShapeSignals.cs │ │ │ │ ├── hknpShapeTagCodec.cs │ │ │ │ ├── hknpShapeType.cs │ │ │ │ ├── hknpSparseCompactMapunsignedshort.cs │ │ │ │ ├── hknpSphereShape.cs │ │ │ │ ├── hknpStaticCompoundShape.cs │ │ │ │ ├── hknpStaticCompoundShapeData.cs │ │ │ │ ├── hknpStaticCompoundShapeInternals.cs │ │ │ │ ├── hknpStaticCompoundShapeKeyMask.cs │ │ │ │ ├── hknpStaticCompoundShapeTree.cs │ │ │ │ ├── hknpSurfaceVelocity.cs │ │ │ │ ├── hknpTriangleShape.cs │ │ │ │ ├── hknpTyremarkPoint.cs │ │ │ │ ├── hknpTyremarksInfo.cs │ │ │ │ ├── hknpTyremarksWheel.cs │ │ │ │ ├── hknpUnaryAction.cs │ │ │ │ ├── hknpVehicleAerodynamics.cs │ │ │ │ ├── hknpVehicleBrake.cs │ │ │ │ ├── hknpVehicleData.cs │ │ │ │ ├── hknpVehicleDataWheelComponentParams.cs │ │ │ │ ├── hknpVehicleDefaultAerodynamics.cs │ │ │ │ ├── hknpVehicleDefaultAnalogDriverInput.cs │ │ │ │ ├── hknpVehicleDefaultBrake.cs │ │ │ │ ├── hknpVehicleDefaultBrakeWheelBrakingProperties.cs │ │ │ │ ├── hknpVehicleDefaultEngine.cs │ │ │ │ ├── hknpVehicleDefaultSteering.cs │ │ │ │ ├── hknpVehicleDefaultSuspension.cs │ │ │ │ ├── hknpVehicleDefaultSuspensionWheelSpringSuspensionParameters.cs │ │ │ │ ├── hknpVehicleDefaultTransmission.cs │ │ │ │ ├── hknpVehicleDefaultVelocityDamper.cs │ │ │ │ ├── hknpVehicleDriverInput.cs │ │ │ │ ├── hknpVehicleDriverInputAnalogStatus.cs │ │ │ │ ├── hknpVehicleDriverInputStatus.cs │ │ │ │ ├── hknpVehicleEngine.cs │ │ │ │ ├── hknpVehicleInstance.cs │ │ │ │ ├── hknpVehicleInstanceWheelInfo.cs │ │ │ │ ├── hknpVehicleLinearCastWheelCollide.cs │ │ │ │ ├── hknpVehicleLinearCastWheelCollideWheelState.cs │ │ │ │ ├── hknpVehicleRayCastWheelCollide.cs │ │ │ │ ├── hknpVehicleSteering.cs │ │ │ │ ├── hknpVehicleSuspension.cs │ │ │ │ ├── hknpVehicleSuspensionSuspensionWheelParameters.cs │ │ │ │ ├── hknpVehicleTransmission.cs │ │ │ │ ├── hknpVehicleVelocityDamper.cs │ │ │ │ ├── hknpVehicleWheelCollide.cs │ │ │ │ ├── hknpWorldCinfo.cs │ │ │ │ ├── hknpWorldSnapshot.cs │ │ │ │ ├── hkp2dAngConstraintAtom.cs │ │ │ │ ├── hkp3dAngConstraintAtom.cs │ │ │ │ ├── hkpAabbPhantom.cs │ │ │ │ ├── hkpAction.cs │ │ │ │ ├── hkpAgent1nSector.cs │ │ │ │ ├── hkpAngConstraintAtom.cs │ │ │ │ ├── hkpAngFrictionConstraintAtom.cs │ │ │ │ ├── hkpAngLimitConstraintAtom.cs │ │ │ │ ├── hkpAngMotorConstraintAtom.cs │ │ │ │ ├── hkpAngularDashpotAction.cs │ │ │ │ ├── hkpArrayAction.cs │ │ │ │ ├── hkpBallAndSocketConstraintData.cs │ │ │ │ ├── hkpBallAndSocketConstraintDataAtoms.cs │ │ │ │ ├── hkpBallGun.cs │ │ │ │ ├── hkpBallSocketChainData.cs │ │ │ │ ├── hkpBallSocketChainDataConstraintInfo.cs │ │ │ │ ├── hkpBallSocketConstraintAtom.cs │ │ │ │ ├── hkpBinaryAction.cs │ │ │ │ ├── hkpBoxMotion.cs │ │ │ │ ├── hkpBoxShape.cs │ │ │ │ ├── hkpBreakableBody.cs │ │ │ │ ├── hkpBreakableBodyController.cs │ │ │ │ ├── hkpBreakableConstraintData.cs │ │ │ │ ├── hkpBreakableMaterial.cs │ │ │ │ ├── hkpBreakableMultiMaterial.cs │ │ │ │ ├── hkpBreakableMultiMaterialInverseMapping.cs │ │ │ │ ├── hkpBreakableMultiMaterialInverseMappingDescriptor.cs │ │ │ │ ├── hkpBreakableShape.cs │ │ │ │ ├── hkpBridgeAtoms.cs │ │ │ │ ├── hkpBridgeConstraintAtom.cs │ │ │ │ ├── hkpBroadPhaseHandle.cs │ │ │ │ ├── hkpBvCompressedMeshShape.cs │ │ │ │ ├── hkpBvCompressedMeshShapeTree.cs │ │ │ │ ├── hkpBvCompressedMeshShapeTreeDataRun.cs │ │ │ │ ├── hkpBvShape.cs │ │ │ │ ├── hkpBvTreeShape.cs │ │ │ │ ├── hkpCachingShapePhantom.cs │ │ │ │ ├── hkpCallbackConstraintMotor.cs │ │ │ │ ├── hkpCapsuleShape.cs │ │ │ │ ├── hkpCdBody.cs │ │ │ │ ├── hkpCenterOfMassChangerModifierConstraintAtom.cs │ │ │ │ ├── hkpCharacterControllerCinfo.cs │ │ │ │ ├── hkpCharacterMotion.cs │ │ │ │ ├── hkpCharacterProxyCinfo.cs │ │ │ │ ├── hkpCharacterRigidBodyCinfo.cs │ │ │ │ ├── hkpCogWheelConstraintAtom.cs │ │ │ │ ├── hkpCogWheelConstraintData.cs │ │ │ │ ├── hkpCogWheelConstraintDataAtoms.cs │ │ │ │ ├── hkpCollidable.cs │ │ │ │ ├── hkpCollidableBoundingVolumeData.cs │ │ │ │ ├── hkpCollidableCollidableFilter.cs │ │ │ │ ├── hkpCollisionFilter.cs │ │ │ │ ├── hkpCollisionFilterList.cs │ │ │ │ ├── hkpCompressedMeshShape.cs │ │ │ │ ├── hkpCompressedMeshShapeBigTriangle.cs │ │ │ │ ├── hkpCompressedMeshShapeChunk.cs │ │ │ │ ├── hkpCompressedMeshShapeConvexPiece.cs │ │ │ │ ├── hkpConeLimitConstraintAtom.cs │ │ │ │ ├── hkpConstrainedSystemFilter.cs │ │ │ │ ├── hkpConstraintAtom.cs │ │ │ │ ├── hkpConstraintChainData.cs │ │ │ │ ├── hkpConstraintChainInstance.cs │ │ │ │ ├── hkpConstraintChainInstanceAction.cs │ │ │ │ ├── hkpConstraintCollisionFilter.cs │ │ │ │ ├── hkpConstraintData.cs │ │ │ │ ├── hkpConstraintInstance.cs │ │ │ │ ├── hkpConstraintInstanceSmallArraySerializeOverrideType.cs │ │ │ │ ├── hkpConstraintMotor.cs │ │ │ │ ├── hkpConvexListFilter.cs │ │ │ │ ├── hkpConvexListShape.cs │ │ │ │ ├── hkpConvexPieceMeshShape.cs │ │ │ │ ├── hkpConvexPieceStreamData.cs │ │ │ │ ├── hkpConvexShape.cs │ │ │ │ ├── hkpConvexTransformShape.cs │ │ │ │ ├── hkpConvexTransformShapeBase.cs │ │ │ │ ├── hkpConvexTranslateShape.cs │ │ │ │ ├── hkpConvexVerticesConnectivity.cs │ │ │ │ ├── hkpConvexVerticesShape.cs │ │ │ │ ├── hkpCylinderShape.cs │ │ │ │ ├── hkpDashpotAction.cs │ │ │ │ ├── hkpDefaultConvexListFilter.cs │ │ │ │ ├── hkpDefaultWorldMemoryWatchDog.cs │ │ │ │ ├── hkpDeformableAngConstraintAtom.cs │ │ │ │ ├── hkpDeformableFixedConstraintData.cs │ │ │ │ ├── hkpDeformableFixedConstraintDataAtoms.cs │ │ │ │ ├── hkpDeformableLinConstraintAtom.cs │ │ │ │ ├── hkpDisableEntityCollisionFilter.cs │ │ │ │ ├── hkpDisplayBindingData.cs │ │ │ │ ├── hkpDisplayBindingDataPhysicsSystem.cs │ │ │ │ ├── hkpDisplayBindingDataRigidBody.cs │ │ │ │ ├── hkpEntity.cs │ │ │ │ ├── hkpEntityExtendedListeners.cs │ │ │ │ ├── hkpEntitySmallArraySerializeOverrideType.cs │ │ │ │ ├── hkpEntitySpuCollisionCallback.cs │ │ │ │ ├── hkpExtendedMeshShape.cs │ │ │ │ ├── hkpExtendedMeshShapeBreakableMaterial.cs │ │ │ │ ├── hkpExtendedMeshShapeShapesSubpart.cs │ │ │ │ ├── hkpExtendedMeshShapeSubpart.cs │ │ │ │ ├── hkpExtendedMeshShapeTrianglesSubpart.cs │ │ │ │ ├── hkpFastMeshShape.cs │ │ │ │ ├── hkpFirstPersonGun.cs │ │ │ │ ├── hkpFixedConstraintData.cs │ │ │ │ ├── hkpFixedConstraintDataAtoms.cs │ │ │ │ ├── hkpFixedRigidMotion.cs │ │ │ │ ├── hkpGenericConstraintData.cs │ │ │ │ ├── hkpGenericConstraintDataScheme.cs │ │ │ │ ├── hkpGenericConstraintDataSchemeConstraintInfo.cs │ │ │ │ ├── hkpGravityGun.cs │ │ │ │ ├── hkpGroupCollisionFilter.cs │ │ │ │ ├── hkpGroupFilter.cs │ │ │ │ ├── hkpHingeConstraintData.cs │ │ │ │ ├── hkpHingeConstraintDataAtoms.cs │ │ │ │ ├── hkpHingeLimitsData.cs │ │ │ │ ├── hkpHingeLimitsDataAtoms.cs │ │ │ │ ├── hkpIgnoreModifierConstraintAtom.cs │ │ │ │ ├── hkpKeyframedRigidMotion.cs │ │ │ │ ├── hkpLimitedForceConstraintMotor.cs │ │ │ │ ├── hkpLimitedHingeConstraintData.cs │ │ │ │ ├── hkpLimitedHingeConstraintDataAtoms.cs │ │ │ │ ├── hkpLinConstraintAtom.cs │ │ │ │ ├── hkpLinFrictionConstraintAtom.cs │ │ │ │ ├── hkpLinLimitConstraintAtom.cs │ │ │ │ ├── hkpLinMotorConstraintAtom.cs │ │ │ │ ├── hkpLinSoftConstraintAtom.cs │ │ │ │ ├── hkpLinearClearanceConstraintData.cs │ │ │ │ ├── hkpLinearClearanceConstraintDataAtoms.cs │ │ │ │ ├── hkpLinearParametricCurve.cs │ │ │ │ ├── hkpLinkedCollidable.cs │ │ │ │ ├── hkpListShape.cs │ │ │ │ ├── hkpListShapeBreakableMaterial.cs │ │ │ │ ├── hkpListShapeChildInfo.cs │ │ │ │ ├── hkpMalleableConstraintData.cs │ │ │ │ ├── hkpMassChangerModifierConstraintAtom.cs │ │ │ │ ├── hkpMaterial.cs │ │ │ │ ├── hkpMaxSizeMotion.cs │ │ │ │ ├── hkpMeshMaterial.cs │ │ │ │ ├── hkpMeshShape.cs │ │ │ │ ├── hkpMeshShapeSubpart.cs │ │ │ │ ├── hkpModifierConstraintAtom.cs │ │ │ │ ├── hkpMoppBvTreeShape.cs │ │ │ │ ├── hkpMoppCode.cs │ │ │ │ ├── hkpMoppCodeCodeInfo.cs │ │ │ │ ├── hkpMoppCodeReindexedTerminal.cs │ │ │ │ ├── hkpMotion.cs │ │ │ │ ├── hkpMotorAction.cs │ │ │ │ ├── hkpMountedBallGun.cs │ │ │ │ ├── hkpMouseSpringAction.cs │ │ │ │ ├── hkpMovingSurfaceModifierConstraintAtom.cs │ │ │ │ ├── hkpMultiRayShape.cs │ │ │ │ ├── hkpMultiRayShapeRay.cs │ │ │ │ ├── hkpMultiSphereShape.cs │ │ │ │ ├── hkpNamedMeshMaterial.cs │ │ │ │ ├── hkpNullCollisionFilter.cs │ │ │ │ ├── hkpOverwritePivotConstraintAtom.cs │ │ │ │ ├── hkpPairCollisionFilter.cs │ │ │ │ ├── hkpPairCollisionFilterMapPairFilterKeyOverrideType.cs │ │ │ │ ├── hkpParametricCurve.cs │ │ │ │ ├── hkpPhantom.cs │ │ │ │ ├── hkpPhantomCallbackShape.cs │ │ │ │ ├── hkpPhysicsData.cs │ │ │ │ ├── hkpPhysicsSystem.cs │ │ │ │ ├── hkpPhysicsSystemWithContacts.cs │ │ │ │ ├── hkpPointToPathConstraintData.cs │ │ │ │ ├── hkpPointToPlaneConstraintData.cs │ │ │ │ ├── hkpPointToPlaneConstraintDataAtoms.cs │ │ │ │ ├── hkpPositionConstraintMotor.cs │ │ │ │ ├── hkpPoweredChainData.cs │ │ │ │ ├── hkpPoweredChainDataConstraintInfo.cs │ │ │ │ ├── hkpPoweredChainMapper.cs │ │ │ │ ├── hkpPoweredChainMapperLinkInfo.cs │ │ │ │ ├── hkpPoweredChainMapperTarget.cs │ │ │ │ ├── hkpPrismaticConstraintData.cs │ │ │ │ ├── hkpPrismaticConstraintDataAtoms.cs │ │ │ │ ├── hkpProjectileGun.cs │ │ │ │ ├── hkpPulleyConstraintAtom.cs │ │ │ │ ├── hkpPulleyConstraintData.cs │ │ │ │ ├── hkpPulleyConstraintDataAtoms.cs │ │ │ │ ├── hkpRackAndPinionConstraintAtom.cs │ │ │ │ ├── hkpRackAndPinionConstraintData.cs │ │ │ │ ├── hkpRackAndPinionConstraintDataAtoms.cs │ │ │ │ ├── hkpRagdollConstraintData.cs │ │ │ │ ├── hkpRagdollConstraintDataAtoms.cs │ │ │ │ ├── hkpRagdollLimitsData.cs │ │ │ │ ├── hkpRagdollLimitsDataAtoms.cs │ │ │ │ ├── hkpRagdollMotorConstraintAtom.cs │ │ │ │ ├── hkpRayCollidableFilter.cs │ │ │ │ ├── hkpRayShapeCollectionFilter.cs │ │ │ │ ├── hkpRemoveTerminalsMoppModifier.cs │ │ │ │ ├── hkpReorientAction.cs │ │ │ │ ├── hkpRigidBody.cs │ │ │ │ ├── hkpRotationalConstraintData.cs │ │ │ │ ├── hkpRotationalConstraintDataAtoms.cs │ │ │ │ ├── hkpSerializedAgentNnEntry.cs │ │ │ │ ├── hkpSerializedDisplayMarker.cs │ │ │ │ ├── hkpSerializedDisplayMarkerList.cs │ │ │ │ ├── hkpSerializedDisplayRbTransforms.cs │ │ │ │ ├── hkpSerializedDisplayRbTransformsDisplayTransformPair.cs │ │ │ │ ├── hkpSerializedSubTrack1nInfo.cs │ │ │ │ ├── hkpSerializedTrack1nInfo.cs │ │ │ │ ├── hkpSetLocalRotationsConstraintAtom.cs │ │ │ │ ├── hkpSetLocalTransformsConstraintAtom.cs │ │ │ │ ├── hkpSetLocalTranslationsConstraintAtom.cs │ │ │ │ ├── hkpSetupStabilizationAtom.cs │ │ │ │ ├── hkpShape.cs │ │ │ │ ├── hkpShapeBase.cs │ │ │ │ ├── hkpShapeCollection.cs │ │ │ │ ├── hkpShapeCollectionFilter.cs │ │ │ │ ├── hkpShapeContainer.cs │ │ │ │ ├── hkpShapeInfo.cs │ │ │ │ ├── hkpShapeKeyTable.cs │ │ │ │ ├── hkpShapeKeyTableBlock.cs │ │ │ │ ├── hkpShapePhantom.cs │ │ │ │ ├── hkpSimpleBreakableMaterial.cs │ │ │ │ ├── hkpSimpleContactConstraintAtom.cs │ │ │ │ ├── hkpSimpleContactConstraintDataInfo.cs │ │ │ │ ├── hkpSimpleMeshShape.cs │ │ │ │ ├── hkpSimpleMeshShapeTriangle.cs │ │ │ │ ├── hkpSimpleShapePhantom.cs │ │ │ │ ├── hkpSingleShapeContainer.cs │ │ │ │ ├── hkpSoftContactModifierConstraintAtom.cs │ │ │ │ ├── hkpSphereMotion.cs │ │ │ │ ├── hkpSphereRepShape.cs │ │ │ │ ├── hkpSphereShape.cs │ │ │ │ ├── hkpSpringAction.cs │ │ │ │ ├── hkpSpringDamperConstraintMotor.cs │ │ │ │ ├── hkpStaticCompoundShape.cs │ │ │ │ ├── hkpStaticCompoundShapeBreakableMaterial.cs │ │ │ │ ├── hkpStaticCompoundShapeInstance.cs │ │ │ │ ├── hkpStiffSpringChainData.cs │ │ │ │ ├── hkpStiffSpringChainDataConstraintInfo.cs │ │ │ │ ├── hkpStiffSpringConstraintAtom.cs │ │ │ │ ├── hkpStiffSpringConstraintData.cs │ │ │ │ ├── hkpStiffSpringConstraintDataAtoms.cs │ │ │ │ ├── hkpStorageExtendedMeshShape.cs │ │ │ │ ├── hkpStorageExtendedMeshShapeMaterial.cs │ │ │ │ ├── hkpStorageExtendedMeshShapeMeshSubpartStorage.cs │ │ │ │ ├── hkpStorageExtendedMeshShapeShapeSubpartStorage.cs │ │ │ │ ├── hkpStorageMeshShape.cs │ │ │ │ ├── hkpStorageMeshShapeSubpartStorage.cs │ │ │ │ ├── hkpThinBoxMotion.cs │ │ │ │ ├── hkpTransformShape.cs │ │ │ │ ├── hkpTriangleShape.cs │ │ │ │ ├── hkpTriggerVolume.cs │ │ │ │ ├── hkpTriggerVolumeEventInfo.cs │ │ │ │ ├── hkpTwistLimitConstraintAtom.cs │ │ │ │ ├── hkpTypedBroadPhaseHandle.cs │ │ │ │ ├── hkpUnaryAction.cs │ │ │ │ ├── hkpVehicleFrictionDescription.cs │ │ │ │ ├── hkpVehicleFrictionDescriptionAxisDescription.cs │ │ │ │ ├── hkpVehicleFrictionStatus.cs │ │ │ │ ├── hkpVehicleFrictionStatusAxisStatus.cs │ │ │ │ ├── hkpVelocityConstraintMotor.cs │ │ │ │ ├── hkpViscousSurfaceModifierConstraintAtom.cs │ │ │ │ ├── hkpWeldingUtility.cs │ │ │ │ ├── hkpWheelConstraintData.cs │ │ │ │ ├── hkpWheelConstraintDataAtoms.cs │ │ │ │ ├── hkpWheelFrictionConstraintAtom.cs │ │ │ │ ├── hkpWheelFrictionConstraintAtomAxle.cs │ │ │ │ ├── hkpWheelFrictionConstraintData.cs │ │ │ │ ├── hkpWheelFrictionConstraintDataAtoms.cs │ │ │ │ ├── hkpWheelFrictionConstraintDataRuntime.cs │ │ │ │ ├── hkpWorldCinfo.cs │ │ │ │ ├── hkpWorldObject.cs │ │ │ │ ├── hkpWrappedConstraintData.cs │ │ │ │ ├── hkxAnimatedFloat.cs │ │ │ │ ├── hkxAnimatedMatrix.cs │ │ │ │ ├── hkxAnimatedQuaternion.cs │ │ │ │ ├── hkxAnimatedVector.cs │ │ │ │ ├── hkxAttribute.cs │ │ │ │ ├── hkxAttributeGroup.cs │ │ │ │ ├── hkxAttributeHolder.cs │ │ │ │ ├── hkxBlob.cs │ │ │ │ ├── hkxBlobMeshShape.cs │ │ │ │ ├── hkxCamera.cs │ │ │ │ ├── hkxEdgeSelectionChannel.cs │ │ │ │ ├── hkxEnum.cs │ │ │ │ ├── hkxEnumItem.cs │ │ │ │ ├── hkxEnvironment.cs │ │ │ │ ├── hkxEnvironmentVariable.cs │ │ │ │ ├── hkxIndexBuffer.cs │ │ │ │ ├── hkxLight.cs │ │ │ │ ├── hkxMaterial.cs │ │ │ │ ├── hkxMaterialEffect.cs │ │ │ │ ├── hkxMaterialProperty.cs │ │ │ │ ├── hkxMaterialShader.cs │ │ │ │ ├── hkxMaterialShaderSet.cs │ │ │ │ ├── hkxMaterialTextureStage.cs │ │ │ │ ├── hkxMesh.cs │ │ │ │ ├── hkxMeshSection.cs │ │ │ │ ├── hkxMeshUserChannelInfo.cs │ │ │ │ ├── hkxNode.cs │ │ │ │ ├── hkxNodeAnnotationData.cs │ │ │ │ ├── hkxNodeSelectionSet.cs │ │ │ │ ├── hkxScene.cs │ │ │ │ ├── hkxSkinBinding.cs │ │ │ │ ├── hkxSparselyAnimatedBool.cs │ │ │ │ ├── hkxSparselyAnimatedEnum.cs │ │ │ │ ├── hkxSparselyAnimatedInt.cs │ │ │ │ ├── hkxSparselyAnimatedString.cs │ │ │ │ ├── hkxSpline.cs │ │ │ │ ├── hkxSplineControlPoint.cs │ │ │ │ ├── hkxTextureFile.cs │ │ │ │ ├── hkxTextureInplace.cs │ │ │ │ ├── hkxTriangleSelectionChannel.cs │ │ │ │ ├── hkxVertexAnimation.cs │ │ │ │ ├── hkxVertexAnimationUsageMap.cs │ │ │ │ ├── hkxVertexBuffer.cs │ │ │ │ ├── hkxVertexBufferVertexData.cs │ │ │ │ ├── hkxVertexDescription.cs │ │ │ │ ├── hkxVertexDescriptionElementDecl.cs │ │ │ │ ├── hkxVertexFloatDataChannel.cs │ │ │ │ ├── hkxVertexIntDataChannel.cs │ │ │ │ ├── hkxVertexSelectionChannel.cs │ │ │ │ └── hkxVertexVectorDataChannel.cs │ │ │ ├── HKX2.csproj │ │ │ ├── IHavokObject.cs │ │ │ ├── Manual │ │ │ │ ├── hkRootLevelContainer.cs │ │ │ │ ├── hkcdStaticMeshTreeBaseSection.cs │ │ │ │ ├── hkcdStaticTreeCodec3Axis4.cs │ │ │ │ ├── hkcdStaticTreeCodec3Axis5.cs │ │ │ │ ├── hkcdStaticTreeCodec3Axis6.cs │ │ │ │ └── hknpCompressedMeshShapeData.cs │ │ │ ├── PackFileCommon.cs │ │ │ ├── PackFileDeserializer.cs │ │ │ └── PackFileSerializer.cs │ │ ├── NewBlendableTransform.cs │ │ ├── SIBCAM │ │ │ └── SIBCAM.cs │ │ └── TAE │ │ │ ├── TAE.Animation.cs │ │ │ ├── TAE.Event.cs │ │ │ ├── TAE.EventGroup.cs │ │ │ ├── TAE.Template.cs │ │ │ └── TAE.cs │ ├── AnimationExporting │ │ └── AnimationExporter.cs │ ├── AnimationImporting │ │ ├── AnimationImporter.cs │ │ └── ImportedAnimation.cs │ ├── AssimpUtilities.cs │ ├── BinaryReaderWriterExtensions.cs │ ├── BindUri.cs │ ├── FLVERImporting │ │ ├── FLVER2Importer.cs │ │ ├── FLVER2MaterialInfoBank.cs │ │ ├── FLVEREnums.cs │ │ ├── FLVERImportHelpers.cs │ │ └── TPFTextureFormatFinder.cs │ ├── SapDebugUtil.cs │ ├── SapEnums.cs │ ├── SapLogger.cs │ ├── SapMath.cs │ ├── SapResources │ │ ├── CompressAnim │ │ │ └── CompressAnim.exe │ │ └── FLVER2MaterialInfoBank │ │ │ ├── BankBB.xml │ │ │ ├── BankDS1.xml │ │ │ ├── BankDS1R.xml │ │ │ ├── BankDS2.xml │ │ │ ├── BankDS3.xml │ │ │ └── BankSDT.xml │ ├── SapUtils.cs │ ├── SoulsAssetPipeline.csproj │ └── XmlStructs │ │ ├── XmlStructDef.cs │ │ ├── XmlStructDefField.cs │ │ ├── XmlStructException.cs │ │ └── XmlStructExtensionMethods.cs ├── SoulsFormatsNEXT │ ├── .gitattributes │ ├── .gitignore │ ├── FORMATS.md │ ├── LICENSE │ ├── README.md │ ├── SoulsFormats.sln │ └── SoulsFormats │ │ ├── Formats │ │ ├── ACB.cs │ │ ├── ANI.cs │ │ ├── AcParts │ │ │ └── AC4 │ │ │ │ ├── AcParts4.cs │ │ │ │ ├── Component │ │ │ │ ├── BoosterComponent.cs │ │ │ │ ├── DefenseComponent.cs │ │ │ │ ├── FrameComponent.cs │ │ │ │ ├── PAComponent.cs │ │ │ │ ├── PartComponent.cs │ │ │ │ ├── RadarComponent.cs │ │ │ │ ├── StabilizerComponent.cs │ │ │ │ ├── WeaponBoosterComponent.cs │ │ │ │ └── WeaponComponent.cs │ │ │ │ ├── Part │ │ │ │ ├── Arm.cs │ │ │ │ ├── ArmStabilizer.cs │ │ │ │ ├── ArmUnit.cs │ │ │ │ ├── BackBooster.cs │ │ │ │ ├── BackUnit.cs │ │ │ │ ├── Core.cs │ │ │ │ ├── CoreLowerSideStabilizer.cs │ │ │ │ ├── CoreUpperSideStabilizer.cs │ │ │ │ ├── FCS.cs │ │ │ │ ├── Generator.cs │ │ │ │ ├── Head.cs │ │ │ │ ├── HeadSideStabilizer.cs │ │ │ │ ├── HeadTopStabilizer.cs │ │ │ │ ├── IBooster.cs │ │ │ │ ├── IFrame.cs │ │ │ │ ├── IPart.cs │ │ │ │ ├── IStabilizer.cs │ │ │ │ ├── IWeapon.cs │ │ │ │ ├── Leg.cs │ │ │ │ ├── LegBackStabilizer.cs │ │ │ │ ├── LegLowerStabilizer.cs │ │ │ │ ├── LegMiddleStabilizer.cs │ │ │ │ ├── LegUpperStabilizer.cs │ │ │ │ ├── MainBooster.cs │ │ │ │ ├── OveredBooster.cs │ │ │ │ ├── ShoulderUnit.cs │ │ │ │ └── SideBooster.cs │ │ │ │ └── Types │ │ │ │ └── DispType.cs │ │ ├── BHD5.cs │ │ ├── BTAB.cs │ │ ├── BTL.cs │ │ ├── BTPB.cs │ │ ├── Binder │ │ │ ├── BND │ │ │ │ └── BND.cs │ │ │ ├── BND2 │ │ │ │ ├── BND2.cs │ │ │ │ ├── BND2FileHeader.cs │ │ │ │ ├── BND2Reader.cs │ │ │ │ └── IBND2.cs │ │ │ ├── BND3 │ │ │ │ ├── BND3.cs │ │ │ │ ├── BND3Reader.cs │ │ │ │ └── IBND3.cs │ │ │ ├── BND4 │ │ │ │ ├── BND4.cs │ │ │ │ ├── BND4Reader.cs │ │ │ │ └── IBND4.cs │ │ │ ├── BXF3 │ │ │ │ ├── BXF3.cs │ │ │ │ ├── BXF3Reader.cs │ │ │ │ └── IBXF3.cs │ │ │ ├── BXF4 │ │ │ │ ├── BXF4.cs │ │ │ │ ├── BXF4Reader.cs │ │ │ │ └── IBXF4.cs │ │ │ ├── Binder.cs │ │ │ ├── BinderFile.cs │ │ │ ├── BinderFileHeader.cs │ │ │ ├── BinderHashTable.cs │ │ │ ├── BinderReader.cs │ │ │ └── IBinder.cs │ │ ├── CCM.cs │ │ ├── CLM2.cs │ │ ├── DCX.cs │ │ ├── DRB │ │ │ ├── Anik.cs │ │ │ ├── Anim.cs │ │ │ ├── Anio.cs │ │ │ ├── Control.cs │ │ │ ├── DRB.cs │ │ │ ├── Dlg.cs │ │ │ ├── Dlgo.cs │ │ │ ├── Scdk.cs │ │ │ ├── Scdl.cs │ │ │ ├── Scdo.cs │ │ │ ├── Shape.cs │ │ │ └── Texture.cs │ │ ├── EDD.cs │ │ ├── EDGE.cs │ │ ├── EMELD.cs │ │ ├── EMEVD │ │ │ ├── EMEVD.cs │ │ │ ├── Event.cs │ │ │ ├── Instruction.cs │ │ │ ├── Layer.cs │ │ │ └── Parameter.cs │ │ ├── ENFL.cs │ │ ├── ESD.cs │ │ ├── F2TR.cs │ │ ├── FFXDLSE │ │ │ ├── Action.cs │ │ │ ├── Evaluatable.cs │ │ │ ├── FFXDLSE.cs │ │ │ ├── FXEffect.cs │ │ │ ├── Param.cs │ │ │ ├── ParamList.cs │ │ │ ├── Primitive.cs │ │ │ ├── ResourceSet.cs │ │ │ ├── State.cs │ │ │ ├── StateMap.cs │ │ │ └── Trigger.cs │ │ ├── FLVER │ │ │ ├── Dummy.cs │ │ │ ├── FLVER0 │ │ │ │ ├── BufferLayout.cs │ │ │ │ ├── FLVER0.cs │ │ │ │ ├── Material.cs │ │ │ │ ├── Mesh.cs │ │ │ │ ├── Texture.cs │ │ │ │ └── VertexBuffer.cs │ │ │ ├── FLVER2 │ │ │ │ ├── BufferLayout.cs │ │ │ │ ├── EdgeGeomSpuConfigInfo.cs │ │ │ │ ├── EdgeIndexBuffer.cs │ │ │ │ ├── EdgeIndexGroup.cs │ │ │ │ ├── EdgeVertexBuffer.cs │ │ │ │ ├── FLVER2.cs │ │ │ │ ├── FaceSet.cs │ │ │ │ ├── GXList.cs │ │ │ │ ├── Material.cs │ │ │ │ ├── Mesh.cs │ │ │ │ ├── SkeletonSet.cs │ │ │ │ ├── Texture.cs │ │ │ │ └── VertexBuffer.cs │ │ │ ├── IFlver.cs │ │ │ ├── LayoutMember.cs │ │ │ ├── Node.cs │ │ │ ├── Vertex.cs │ │ │ ├── VertexBoneIndices.cs │ │ │ ├── VertexBoneWeights.cs │ │ │ └── VertexColor.cs │ │ ├── FMB.cs │ │ ├── FMG.cs │ │ ├── FSDATA.cs │ │ ├── FSLIBLZS.cs │ │ ├── FXR3.cs │ │ ├── GPARAM.cs │ │ ├── GRASS.cs │ │ ├── LUAGNL.cs │ │ ├── LUAINFO.cs │ │ ├── MATBIN.cs │ │ ├── MCG.cs │ │ ├── MCP.cs │ │ ├── MLB │ │ │ ├── IMLB.cs │ │ │ ├── IMlbResource.cs │ │ │ ├── MLB_AC4.cs │ │ │ └── MLB_AC5.cs │ │ ├── MQB │ │ │ ├── CustomData.cs │ │ │ ├── Cut.cs │ │ │ ├── Disposition.cs │ │ │ ├── MQB.cs │ │ │ ├── Resource.cs │ │ │ ├── Timeline.cs │ │ │ └── Transform.cs │ │ ├── MSB │ │ │ ├── FormatReference.cs │ │ │ ├── IMsb.cs │ │ │ ├── MSB.cs │ │ │ ├── MSB1 │ │ │ │ ├── EventParam.cs │ │ │ │ ├── MSB1.cs │ │ │ │ ├── ModelParam.cs │ │ │ │ ├── PartsParam.cs │ │ │ │ └── PointParam.cs │ │ │ ├── MSB2 │ │ │ │ ├── EventParam.cs │ │ │ │ ├── LayerParam.cs │ │ │ │ ├── MSB2.cs │ │ │ │ ├── MapstudioBoneName.cs │ │ │ │ ├── MapstudioPartsPose.cs │ │ │ │ ├── ModelParam.cs │ │ │ │ ├── PartsParam.cs │ │ │ │ ├── PointParam.cs │ │ │ │ └── RouteParam.cs │ │ │ ├── MSB3 │ │ │ │ ├── EventParam.cs │ │ │ │ ├── LayerParam.cs │ │ │ │ ├── MSB3.cs │ │ │ │ ├── MapstudioBoneName.cs │ │ │ │ ├── MapstudioPartsPose.cs │ │ │ │ ├── ModelParam.cs │ │ │ │ ├── PartsParam.cs │ │ │ │ ├── PointParam.cs │ │ │ │ └── RouteParam.cs │ │ │ ├── MSBAC4 │ │ │ │ ├── EventParam.cs │ │ │ │ ├── LayerParam.cs │ │ │ │ ├── MSBAC4.cs │ │ │ │ ├── MapStudioTreeParam.cs │ │ │ │ ├── ModelParam.cs │ │ │ │ ├── PartsParam.cs │ │ │ │ ├── PointParam.cs │ │ │ │ └── RouteParam.cs │ │ │ ├── MSBB │ │ │ │ ├── EventParam.cs │ │ │ │ ├── MSBB.cs │ │ │ │ ├── ModelParam.cs │ │ │ │ ├── PartsParam.cs │ │ │ │ └── PointParam.cs │ │ │ ├── MSBD │ │ │ │ ├── EventParam.cs │ │ │ │ ├── MSBD.cs │ │ │ │ ├── MapstudioTree.cs │ │ │ │ ├── ModelParam.cs │ │ │ │ ├── PartsParam.cs │ │ │ │ └── PointParam.cs │ │ │ ├── MSBDR │ │ │ │ ├── EventParam.cs │ │ │ │ ├── MSBDR.cs │ │ │ │ ├── MapstudioTree.cs │ │ │ │ ├── ModelParam.cs │ │ │ │ ├── PartsParam.cs │ │ │ │ └── PointParam.cs │ │ │ ├── MSBE │ │ │ │ ├── EventParam.cs │ │ │ │ ├── MSBE.cs │ │ │ │ ├── ModelParam.cs │ │ │ │ ├── PartsParam.cs │ │ │ │ ├── PointParam.cs │ │ │ │ └── RouteParam.cs │ │ │ ├── MSBFA │ │ │ │ ├── EventParam.cs │ │ │ │ ├── LayerParam.cs │ │ │ │ ├── MSBFA.cs │ │ │ │ ├── MapStudioTreeParam.cs │ │ │ │ ├── ModelParam.cs │ │ │ │ ├── PartsParam.cs │ │ │ │ ├── PointParam.cs │ │ │ │ └── RouteParam.cs │ │ │ ├── MSBN │ │ │ │ ├── MSBN.ModelSection.cs │ │ │ │ ├── MSBN.PartsSection.cs │ │ │ │ └── MSBN.cs │ │ │ ├── MSBReference.cs │ │ │ ├── MSBS │ │ │ │ ├── EventParam.cs │ │ │ │ ├── MSBS.cs │ │ │ │ ├── ModelParam.cs │ │ │ │ ├── PartsParam.cs │ │ │ │ ├── PointParam.cs │ │ │ │ └── RouteParam.cs │ │ │ ├── MSBV │ │ │ │ ├── EventParam.cs │ │ │ │ ├── LayerParam.cs │ │ │ │ ├── MSBV.cs │ │ │ │ ├── MapStudioTreeParam.cs │ │ │ │ ├── ModelParam.cs │ │ │ │ ├── PartsParam.cs │ │ │ │ ├── PointParam.cs │ │ │ │ └── RouteParam.cs │ │ │ ├── MSBVD │ │ │ │ ├── EventParam.cs │ │ │ │ ├── LayerParam.cs │ │ │ │ ├── MSBVD.cs │ │ │ │ ├── MapStudioTreeParam.cs │ │ │ │ ├── ModelParam.cs │ │ │ │ ├── PartsParam.cs │ │ │ │ ├── PointParam.cs │ │ │ │ └── RouteParam.cs │ │ │ ├── MSBVI │ │ │ │ ├── EventParam.cs │ │ │ │ ├── LayerParam.cs │ │ │ │ ├── MSBVI.cs │ │ │ │ ├── ModelParam.cs │ │ │ │ ├── PartsParam.cs │ │ │ │ ├── PointParam.cs │ │ │ │ └── RouteParam.cs │ │ │ ├── MsbBoundingBox.cs │ │ │ └── Shape.cs │ │ ├── MTD.cs │ │ ├── Morpheme │ │ │ ├── MorphemeBundle │ │ │ │ ├── AnimToRigTableMap.cs │ │ │ │ ├── Event.cs │ │ │ │ ├── EventTrack.cs │ │ │ │ ├── FileNameLookupTable.cs │ │ │ │ ├── LookupTable.cs │ │ │ │ ├── MorphemeBundleEnums.cs │ │ │ │ ├── MorphemeBundleGUID.cs │ │ │ │ ├── MorphemeBundleGeneric.cs │ │ │ │ ├── MorphemeBundle_Base.cs │ │ │ │ ├── MorphemeFileHeader.cs │ │ │ │ ├── MorphemeSizeAlignFormatting.cs │ │ │ │ ├── Network │ │ │ │ │ ├── MessageDef.cs │ │ │ │ │ ├── MorphemeNodeDef.cs │ │ │ │ │ ├── NodeAttrib │ │ │ │ │ │ ├── NodeAttribBase.cs │ │ │ │ │ │ ├── NodeAttribBool.cs │ │ │ │ │ │ ├── NodeAttribSourceAnim.cs │ │ │ │ │ │ ├── NodeAttribSourceEventTrack.cs │ │ │ │ │ │ └── NodeAttribUnknown.cs │ │ │ │ │ ├── NodeDataSet.cs │ │ │ │ │ ├── NodeDef.cs │ │ │ │ │ └── SmStateList.cs │ │ │ │ ├── NetworkBundle.cs │ │ │ │ ├── Rig.cs │ │ │ │ ├── RigToAnimEntryMap.cs │ │ │ │ └── RigToAnimMap.cs │ │ │ ├── NMB.cs │ │ │ └── NSA │ │ │ │ ├── DequantizationFactor.cs │ │ │ │ ├── DequantizationInfo.cs │ │ │ │ ├── DynamicSegment.cs │ │ │ │ ├── NSA.cs │ │ │ │ ├── NSAHeader.cs │ │ │ │ ├── NSAVec3.cs │ │ │ │ ├── RootMotionSegment.cs │ │ │ │ ├── RotationData.cs │ │ │ │ ├── StaticSegment.cs │ │ │ │ └── TranslationData.cs │ │ ├── NGP.cs │ │ ├── NVA.cs │ │ ├── NVM.cs │ │ ├── Other │ │ │ ├── AC3SL │ │ │ │ └── BND.cs │ │ │ ├── AC4 │ │ │ │ ├── ANC.cs │ │ │ │ ├── AcAttachInfo.cs │ │ │ │ ├── AcColorSet4.cs │ │ │ │ ├── AcConflictInfo.cs │ │ │ │ ├── AcPartCategory.cs │ │ │ │ └── DBSUB.cs │ │ │ ├── ACE3 │ │ │ │ └── BND.cs │ │ │ ├── Dreamcast │ │ │ │ └── MGF.cs │ │ │ ├── KF4 │ │ │ │ ├── CHR.cs │ │ │ │ ├── DAT.cs │ │ │ │ ├── MAP.cs │ │ │ │ └── OM2.cs │ │ │ ├── Kuon │ │ │ │ ├── BND.cs │ │ │ │ └── DVDBND.cs │ │ │ ├── LDMU.cs │ │ │ ├── MDL.cs │ │ │ ├── MDL0.cs │ │ │ ├── MDL4 │ │ │ │ ├── Dummy.cs │ │ │ │ ├── MDL4.cs │ │ │ │ ├── Material.cs │ │ │ │ ├── Mesh.cs │ │ │ │ ├── Node.cs │ │ │ │ ├── Vertex.cs │ │ │ │ ├── VertexBoneIndices.cs │ │ │ │ ├── VertexBoneWeights.cs │ │ │ │ └── VertexColor.cs │ │ │ ├── MDLEnum.cs │ │ │ ├── MWC │ │ │ │ ├── DEV.cs │ │ │ │ ├── MDAT.cs │ │ │ │ ├── MMD.cs │ │ │ │ ├── OTR.cs │ │ │ │ ├── SMD.cs │ │ │ │ └── TDAT.cs │ │ │ ├── Murakumo │ │ │ │ └── DDL.cs │ │ │ ├── Otogi2 │ │ │ │ └── DAT.cs │ │ │ ├── SOM │ │ │ │ └── MDO.cs │ │ │ └── Zero3.cs │ │ ├── PARAM │ │ │ ├── Deprecated │ │ │ │ ├── Enum.cs │ │ │ │ └── Layout.cs │ │ │ ├── PARAM │ │ │ │ ├── Cell.cs │ │ │ │ ├── PARAM.cs │ │ │ │ └── Row.cs │ │ │ ├── PARAMDBP │ │ │ │ ├── DBPPARAM.cs │ │ │ │ ├── PARAMDBP.cs │ │ │ │ ├── TxtSerializer.cs │ │ │ │ └── XmlSerializer.cs │ │ │ ├── PARAMDEF │ │ │ │ ├── Field.cs │ │ │ │ ├── PARAMDEF.cs │ │ │ │ └── XmlSerializer.cs │ │ │ ├── PARAMTDF.cs │ │ │ ├── ParamDbpUtil.cs │ │ │ └── ParamUtil.cs │ │ ├── PMDCL.cs │ │ ├── RMB.cs │ │ ├── SMD4 │ │ │ ├── Mesh.cs │ │ │ ├── Node.cs │ │ │ ├── SMD4.cs │ │ │ ├── Unk10.cs │ │ │ ├── Vertex.cs │ │ │ ├── VertexBoneIndices.cs │ │ │ └── VertexBoneWeights.cs │ │ ├── TAE3 │ │ │ ├── TAE3.Event.cs │ │ │ └── TAE3.cs │ │ └── TPF │ │ │ ├── DDS.cs │ │ │ ├── Headerizer.cs │ │ │ ├── SecretHeaderizer.cs │ │ │ └── TPF.cs │ │ ├── SoulsFormats.csproj │ │ └── Utilities │ │ ├── Attributes │ │ ├── HideProperty.cs │ │ ├── NoRenderGroupInheritance.cs │ │ ├── RotationRadians.cs │ │ ├── RotationXZY.cs │ │ └── SupportsAlphaAttribute.cs │ │ ├── BitConverterHelper.cs │ │ ├── Collections │ │ └── ListExtensions.cs │ │ ├── Compression │ │ ├── Oodle │ │ │ ├── IOodleCompressor.cs │ │ │ ├── Oodle.cs │ │ │ ├── Oodle26.cs │ │ │ ├── Oodle28.cs │ │ │ └── Oodle29.cs │ │ ├── ZlibHelper.cs │ │ └── ZstdHelper.cs │ │ ├── Cryptography │ │ ├── HashHelper.cs │ │ ├── RegulationDecryptor.cs │ │ └── SL2Decryptor.cs │ │ ├── EdgeGeom.cs │ │ ├── EndianHelper.cs │ │ ├── Exceptions │ │ └── NoOodleException.cs │ │ ├── Formats │ │ ├── ISoulsFile.cs │ │ └── SoulsFile.cs │ │ ├── Guessing │ │ └── ExtensionGuesser.cs │ │ ├── HexHelper.cs │ │ ├── IO │ │ ├── BinaryReaderEx.cs │ │ ├── BinaryWriterEx.cs │ │ └── PathHelper.cs │ │ ├── Kernel32.cs │ │ ├── MathHelper.cs │ │ ├── SFUtil.cs │ │ ├── Text │ │ └── SFEncoding.cs │ │ └── Xml │ │ ├── XmlNodeExtensions.cs │ │ └── XmlWriterExtensions.cs └── readme.md ├── README.md ├── SoulsAssetPipeline ├── Animation │ ├── HKX │ │ ├── Animation.cs │ │ ├── HKX.cs │ │ ├── HavokAnimationData.cs │ │ ├── RootMotionData.cs │ │ ├── RootMotionDataPlayer.cs │ │ └── SplineCompressedAnimation.cs │ ├── HKX2 │ │ ├── Autogen │ │ │ ├── CustomBoneFixModifier.cs │ │ │ ├── CustomClipGenerator.cs │ │ │ ├── CustomLookAtTwistModifier.cs │ │ │ ├── CustomLookAtTwistModifierTwistParam.cs │ │ │ ├── CustomManualSelectorGenerator.cs │ │ │ ├── CustomManualSelectorGeneratorInternalState.cs │ │ │ ├── CustomMeshParameter.cs │ │ │ ├── CustomMeshTriangleParameter.cs │ │ │ ├── CustomParamStorageExtendedMeshShape.cs │ │ │ ├── CustomParamStorageMeshShape.cs │ │ │ ├── CustomSprjGenerator.cs │ │ │ ├── CustomTimeActGenerator.cs │ │ │ ├── CustomTransitionEffect.cs │ │ │ ├── fsnpCustomMeshParameter.cs │ │ │ ├── fsnpCustomMeshParameterPrimitiveData.cs │ │ │ ├── fsnpCustomMeshParameterTriangleData.cs │ │ │ ├── fsnpCustomParamCompressedMeshShape.cs │ │ │ ├── hclAction.cs │ │ │ ├── hclAntiPinchConstraintSet.cs │ │ │ ├── hclAntiPinchConstraintSetPerParticle.cs │ │ │ ├── hclBendLinkConstraintSet.cs │ │ │ ├── hclBendLinkConstraintSetLink.cs │ │ │ ├── hclBendLinkConstraintSetMx.cs │ │ │ ├── hclBendLinkConstraintSetMxBatch.cs │ │ │ ├── hclBendLinkConstraintSetMxSingle.cs │ │ │ ├── hclBendLinkSetupObject.cs │ │ │ ├── hclBendStiffnessConstraintSet.cs │ │ │ ├── hclBendStiffnessConstraintSetLink.cs │ │ │ ├── hclBendStiffnessConstraintSetMx.cs │ │ │ ├── hclBendStiffnessConstraintSetMxBatch.cs │ │ │ ├── hclBendStiffnessConstraintSetMxSingle.cs │ │ │ ├── hclBendStiffnessSetupObject.cs │ │ │ ├── hclBlendSetupObject.cs │ │ │ ├── hclBlendSomeVerticesOperator.cs │ │ │ ├── hclBlendSomeVerticesOperatorBlendEntry.cs │ │ │ ├── hclBonePlanesConstraintSet.cs │ │ │ ├── hclBonePlanesConstraintSetBonePlane.cs │ │ │ ├── hclBonePlanesSetupObject.cs │ │ │ ├── hclBonePlanesSetupObjectGlobalPlane.cs │ │ │ ├── hclBonePlanesSetupObjectPerParticleAngle.cs │ │ │ ├── hclBonePlanesSetupObjectPerParticlePlane.cs │ │ │ ├── hclBoneSpaceDeformer.cs │ │ │ ├── hclBoneSpaceDeformerFourBlendEntryBlock.cs │ │ │ ├── hclBoneSpaceDeformerLocalBlockP.cs │ │ │ ├── hclBoneSpaceDeformerLocalBlockPN.cs │ │ │ ├── hclBoneSpaceDeformerLocalBlockPNT.cs │ │ │ ├── hclBoneSpaceDeformerLocalBlockPNTB.cs │ │ │ ├── hclBoneSpaceDeformerLocalBlockUnpackedP.cs │ │ │ ├── hclBoneSpaceDeformerLocalBlockUnpackedPN.cs │ │ │ ├── hclBoneSpaceDeformerLocalBlockUnpackedPNT.cs │ │ │ ├── hclBoneSpaceDeformerLocalBlockUnpackedPNTB.cs │ │ │ ├── hclBoneSpaceDeformerOneBlendEntryBlock.cs │ │ │ ├── hclBoneSpaceDeformerThreeBlendEntryBlock.cs │ │ │ ├── hclBoneSpaceDeformerTwoBlendEntryBlock.cs │ │ │ ├── hclBoneSpaceMeshMeshDeformOperator.cs │ │ │ ├── hclBoneSpaceMeshMeshDeformPNOperator.cs │ │ │ ├── hclBoneSpaceMeshMeshDeformPNTBOperator.cs │ │ │ ├── hclBoneSpaceMeshMeshDeformPNTOperator.cs │ │ │ ├── hclBoneSpaceMeshMeshDeformPOperator.cs │ │ │ ├── hclBoneSpaceSkinOperator.cs │ │ │ ├── hclBoneSpaceSkinPNOperator.cs │ │ │ ├── hclBoneSpaceSkinPNTBOperator.cs │ │ │ ├── hclBoneSpaceSkinPNTOperator.cs │ │ │ ├── hclBoneSpaceSkinPOperator.cs │ │ │ ├── hclBufferDefinition.cs │ │ │ ├── hclBufferLayout.cs │ │ │ ├── hclBufferLayoutBufferElement.cs │ │ │ ├── hclBufferLayoutSlot.cs │ │ │ ├── hclBufferSetupObject.cs │ │ │ ├── hclBufferUsage.cs │ │ │ ├── hclCapsuleShape.cs │ │ │ ├── hclClothContainer.cs │ │ │ ├── hclClothData.cs │ │ │ ├── hclClothSetupContainer.cs │ │ │ ├── hclClothSetupObject.cs │ │ │ ├── hclClothState.cs │ │ │ ├── hclClothStateBufferAccess.cs │ │ │ ├── hclClothStateSetupObject.cs │ │ │ ├── hclClothStateTransformSetAccess.cs │ │ │ ├── hclCollidable.cs │ │ │ ├── hclCompressibleLinkConstraintSet.cs │ │ │ ├── hclCompressibleLinkConstraintSetLink.cs │ │ │ ├── hclCompressibleLinkConstraintSetMx.cs │ │ │ ├── hclCompressibleLinkConstraintSetMxBatch.cs │ │ │ ├── hclCompressibleLinkConstraintSetMxSingle.cs │ │ │ ├── hclConstraintSet.cs │ │ │ ├── hclConstraintSetSetupObject.cs │ │ │ ├── hclConvexGeometryShape.cs │ │ │ ├── hclConvexHeightFieldShape.cs │ │ │ ├── hclConvexPlanesShape.cs │ │ │ ├── hclCopyVerticesOperator.cs │ │ │ ├── hclDisplayBufferSetupObject.cs │ │ │ ├── hclEdgeSelectionInput.cs │ │ │ ├── hclGatherAllVerticesOperator.cs │ │ │ ├── hclGatherSomeVerticesOperator.cs │ │ │ ├── hclGatherSomeVerticesOperatorVertexPair.cs │ │ │ ├── hclInputConvertOperator.cs │ │ │ ├── hclLocalRangeConstraintSet.cs │ │ │ ├── hclLocalRangeConstraintSetLocalConstraint.cs │ │ │ ├── hclLocalRangeSetupObject.cs │ │ │ ├── hclMeshBoneDeformOperator.cs │ │ │ ├── hclMeshBoneDeformOperatorTriangleBonePair.cs │ │ │ ├── hclMeshBoneDeformSetupObject.cs │ │ │ ├── hclMeshMeshDeformOperator.cs │ │ │ ├── hclMeshMeshDeformOperatorTriangleVertexPair.cs │ │ │ ├── hclMeshMeshDeformSetupObject.cs │ │ │ ├── hclMoveFixedParticlesSetupObject.cs │ │ │ ├── hclMoveParticlesOperator.cs │ │ │ ├── hclMoveParticlesOperatorVertexParticlePair.cs │ │ │ ├── hclNamedSetupMesh.cs │ │ │ ├── hclNamedTransformSetSetupObject.cs │ │ │ ├── hclObjectSpaceDeformer.cs │ │ │ ├── hclObjectSpaceDeformerFourBlendEntryBlock.cs │ │ │ ├── hclObjectSpaceDeformerLocalBlockP.cs │ │ │ ├── hclObjectSpaceDeformerLocalBlockPN.cs │ │ │ ├── hclObjectSpaceDeformerLocalBlockPNT.cs │ │ │ ├── hclObjectSpaceDeformerLocalBlockPNTB.cs │ │ │ ├── hclObjectSpaceDeformerLocalBlockUnpackedP.cs │ │ │ ├── hclObjectSpaceDeformerLocalBlockUnpackedPN.cs │ │ │ ├── hclObjectSpaceDeformerLocalBlockUnpackedPNT.cs │ │ │ ├── hclObjectSpaceDeformerLocalBlockUnpackedPNTB.cs │ │ │ ├── hclObjectSpaceDeformerOneBlendEntryBlock.cs │ │ │ ├── hclObjectSpaceDeformerThreeBlendEntryBlock.cs │ │ │ ├── hclObjectSpaceDeformerTwoBlendEntryBlock.cs │ │ │ ├── hclObjectSpaceMeshMeshDeformOperator.cs │ │ │ ├── hclObjectSpaceMeshMeshDeformPNOperator.cs │ │ │ ├── hclObjectSpaceMeshMeshDeformPNTBOperator.cs │ │ │ ├── hclObjectSpaceMeshMeshDeformPNTOperator.cs │ │ │ ├── hclObjectSpaceMeshMeshDeformPOperator.cs │ │ │ ├── hclObjectSpaceSkinOperator.cs │ │ │ ├── hclObjectSpaceSkinPNOperator.cs │ │ │ ├── hclObjectSpaceSkinPNTBOperator.cs │ │ │ ├── hclObjectSpaceSkinPNTOperator.cs │ │ │ ├── hclObjectSpaceSkinPOperator.cs │ │ │ ├── hclOperator.cs │ │ │ ├── hclOperatorSetupObject.cs │ │ │ ├── hclOutputConvertOperator.cs │ │ │ ├── hclPlaneShape.cs │ │ │ ├── hclRuntimeConversionInfo.cs │ │ │ ├── hclRuntimeConversionInfoElementConversion.cs │ │ │ ├── hclRuntimeConversionInfoSlotConversion.cs │ │ │ ├── hclSceneDataSetupMesh.cs │ │ │ ├── hclSceneDataSetupMeshSection.cs │ │ │ ├── hclScratchBufferDefinition.cs │ │ │ ├── hclScratchBufferSetupObject.cs │ │ │ ├── hclSetupMesh.cs │ │ │ ├── hclSetupMeshSection.cs │ │ │ ├── hclSetupMeshSectionTriangle.cs │ │ │ ├── hclShadowBufferDefinition.cs │ │ │ ├── hclShape.cs │ │ │ ├── hclSimClothBufferSetupObject.cs │ │ │ ├── hclSimClothData.cs │ │ │ ├── hclSimClothDataCollidablePinchingData.cs │ │ │ ├── hclSimClothDataCollidableTransformMap.cs │ │ │ ├── hclSimClothDataLandscapeCollisionData.cs │ │ │ ├── hclSimClothDataOverridableSimulationInfo.cs │ │ │ ├── hclSimClothDataParticleData.cs │ │ │ ├── hclSimClothDataTransferMotionData.cs │ │ │ ├── hclSimClothPose.cs │ │ │ ├── hclSimClothSetupObject.cs │ │ │ ├── hclSimClothSetupObjectPerInstanceCollidable.cs │ │ │ ├── hclSimClothSetupObjectTransferMotionSetupData.cs │ │ │ ├── hclSimpleMeshBoneDeformOperator.cs │ │ │ ├── hclSimpleMeshBoneDeformOperatorTriangleBonePair.cs │ │ │ ├── hclSimpleWindAction.cs │ │ │ ├── hclSimulateOperator.cs │ │ │ ├── hclSimulateSetupObject.cs │ │ │ ├── hclSimulationSetupMesh.cs │ │ │ ├── hclSimulationSetupMeshMapOptions.cs │ │ │ ├── hclSkeletonTransformSetSetupObject.cs │ │ │ ├── hclSkinOperator.cs │ │ │ ├── hclSkinOperatorBoneInfluence.cs │ │ │ ├── hclSkinSetupObject.cs │ │ │ ├── hclSphereShape.cs │ │ │ ├── hclStandardLinkConstraintSet.cs │ │ │ ├── hclStandardLinkConstraintSetLink.cs │ │ │ ├── hclStandardLinkConstraintSetMx.cs │ │ │ ├── hclStandardLinkConstraintSetMxBatch.cs │ │ │ ├── hclStandardLinkConstraintSetMxSingle.cs │ │ │ ├── hclStandardLinkSetupObject.cs │ │ │ ├── hclStaticDisplayBufferSetupObject.cs │ │ │ ├── hclStaticShadowBufferDefinition.cs │ │ │ ├── hclStorageSetupMesh.cs │ │ │ ├── hclStorageSetupMeshBone.cs │ │ │ ├── hclStorageSetupMeshEdgeChannel.cs │ │ │ ├── hclStorageSetupMeshSection.cs │ │ │ ├── hclStorageSetupMeshSectionBoneInfluences.cs │ │ │ ├── hclStorageSetupMeshSectionSectionEdgeSelectionChannel.cs │ │ │ ├── hclStorageSetupMeshSectionSectionTriangleSelectionChannel.cs │ │ │ ├── hclStorageSetupMeshSectionSectionVertexChannel.cs │ │ │ ├── hclStorageSetupMeshSectionSectionVertexFloatChannel.cs │ │ │ ├── hclStorageSetupMeshSectionSectionVertexSelectionChannel.cs │ │ │ ├── hclStorageSetupMeshTriangleChannel.cs │ │ │ ├── hclStorageSetupMeshVertexChannel.cs │ │ │ ├── hclStretchLinkConstraintSet.cs │ │ │ ├── hclStretchLinkConstraintSetLink.cs │ │ │ ├── hclStretchLinkConstraintSetMx.cs │ │ │ ├── hclStretchLinkConstraintSetMxBatch.cs │ │ │ ├── hclStretchLinkConstraintSetMxSingle.cs │ │ │ ├── hclStretchLinkSetupObject.cs │ │ │ ├── hclTaperedCapsuleShape.cs │ │ │ ├── hclToolNamedObjectReference.cs │ │ │ ├── hclTransformSetDefinition.cs │ │ │ ├── hclTransformSetSetupObject.cs │ │ │ ├── hclTransformSetUsage.cs │ │ │ ├── hclTransformSetUsageTransformTracker.cs │ │ │ ├── hclTransitionConstraintSet.cs │ │ │ ├── hclTransitionConstraintSetPerParticle.cs │ │ │ ├── hclTransitionSetupObject.cs │ │ │ ├── hclTriangleSelectionInput.cs │ │ │ ├── hclUpdateAllVertexFramesOperator.cs │ │ │ ├── hclUpdateSomeVertexFramesOperator.cs │ │ │ ├── hclUpdateSomeVertexFramesOperatorTriangle.cs │ │ │ ├── hclUpdateVertexFramesSetupObject.cs │ │ │ ├── hclVertexCopySetupObject.cs │ │ │ ├── hclVertexFloatInput.cs │ │ │ ├── hclVertexGatherSetupObject.cs │ │ │ ├── hclVertexSelectionInput.cs │ │ │ ├── hclVolumeConstraint.cs │ │ │ ├── hclVolumeConstraintApplyData.cs │ │ │ ├── hclVolumeConstraintFrameData.cs │ │ │ ├── hclVolumeConstraintMx.cs │ │ │ ├── hclVolumeConstraintMxApplyBatchData.cs │ │ │ ├── hclVolumeConstraintMxApplySingleData.cs │ │ │ ├── hclVolumeConstraintMxFrameBatchData.cs │ │ │ ├── hclVolumeConstraintMxFrameSingleData.cs │ │ │ ├── hclVolumeConstraintSetupObject.cs │ │ │ ├── hkAabb.cs │ │ │ ├── hkAabb16.cs │ │ │ ├── hkAabbHalf.cs │ │ │ ├── hkAabbUint32.cs │ │ │ ├── hkAlignSceneToNodeOptions.cs │ │ │ ├── hkArrayTypeAttribute.cs │ │ │ ├── hkBaseObject.cs │ │ │ ├── hkBitField.cs │ │ │ ├── hkBitFieldBasehkBitFieldStoragehkArrayunsignedinthkContainerHeapAllocator.cs │ │ │ ├── hkBitFieldBasehkOffsetBitFieldStoragehkArrayunsignedinthkContainerHeapAllocator.cs │ │ │ ├── hkBitFieldStoragehkArrayunsignedinthkContainerHeapAllocator.cs │ │ │ ├── hkClass.cs │ │ │ ├── hkClassEnum.cs │ │ │ ├── hkClassEnumItem.cs │ │ │ ├── hkClassMember.cs │ │ │ ├── hkColor.cs │ │ │ ├── hkCompressedMassProperties.cs │ │ │ ├── hkContactPoint.cs │ │ │ ├── hkContactPointMaterial.cs │ │ │ ├── hkCustomAttributes.cs │ │ │ ├── hkCustomAttributesAttribute.cs │ │ │ ├── hkDataObjectTypeAttribute.cs │ │ │ ├── hkDescriptionAttribute.cs │ │ │ ├── hkDocumentationAttribute.cs │ │ │ ├── hkFloat16.cs │ │ │ ├── hkFloat16Transform.cs │ │ │ ├── hkFourTransposedPointsf.cs │ │ │ ├── hkFreeListArrayhknpMaterialhknpMaterialId8hknpMaterialFreeListArrayOperations.cs │ │ │ ├── hkFreeListArrayhknpMotionPropertieshknpMotionPropertiesId8hknpMotionPropertiesFreeListArrayOperations.cs │ │ │ ├── hkFreeListArrayhknpShapeInstancehkHandleshort32767hknpShapeInstanceIdDiscriminant8hknpShapeInstance.cs │ │ │ ├── hkGeometry.cs │ │ │ ├── hkGeometryTriangle.cs │ │ │ ├── hkGizmoAttribute.cs │ │ │ ├── hkIndexedTransformSet.cs │ │ │ ├── hkIntRealPair.cs │ │ │ ├── hkLinkAttribute.cs │ │ │ ├── hkLocalFrame.cs │ │ │ ├── hkLocalFrameGroup.cs │ │ │ ├── hkMassProperties.cs │ │ │ ├── hkMemoryMeshBody.cs │ │ │ ├── hkMemoryMeshMaterial.cs │ │ │ ├── hkMemoryMeshShape.cs │ │ │ ├── hkMemoryMeshShapeSection.cs │ │ │ ├── hkMemoryMeshTexture.cs │ │ │ ├── hkMemoryMeshVertexBuffer.cs │ │ │ ├── hkMemoryResourceContainer.cs │ │ │ ├── hkMemoryResourceHandle.cs │ │ │ ├── hkMemoryResourceHandleExternalLink.cs │ │ │ ├── hkMeshBody.cs │ │ │ ├── hkMeshBoneIndexMapping.cs │ │ │ ├── hkMeshMaterial.cs │ │ │ ├── hkMeshSection.cs │ │ │ ├── hkMeshSectionCinfo.cs │ │ │ ├── hkMeshShape.cs │ │ │ ├── hkMeshTexture.cs │ │ │ ├── hkMeshTextureRawBufferDescriptor.cs │ │ │ ├── hkMeshVertexBuffer.cs │ │ │ ├── hkModelerNodeTypeAttribute.cs │ │ │ ├── hkMonitorStreamColorTable.cs │ │ │ ├── hkMonitorStreamColorTableColorPair.cs │ │ │ ├── hkMonitorStreamFrameInfo.cs │ │ │ ├── hkMonitorStreamStringMap.cs │ │ │ ├── hkMonitorStreamStringMapStringMap.cs │ │ │ ├── hkMoppBvTreeShapeBase.cs │ │ │ ├── hkMotionState.cs │ │ │ ├── hkMultiThreadCheck.cs │ │ │ ├── hkMultipleVertexBuffer.cs │ │ │ ├── hkMultipleVertexBufferElementInfo.cs │ │ │ ├── hkMultipleVertexBufferLockedElement.cs │ │ │ ├── hkMultipleVertexBufferVertexBufferInfo.cs │ │ │ ├── hkOffsetBitField.cs │ │ │ ├── hkOffsetBitFieldStoragehkArrayunsignedinthkContainerHeapAllocator.cs │ │ │ ├── hkPackedVector3.cs │ │ │ ├── hkPackedVector8.cs │ │ │ ├── hkPackfileHeader.cs │ │ │ ├── hkPackfileSectionHeader.cs │ │ │ ├── hkPostFinishAttribute.cs │ │ │ ├── hkQTransform.cs │ │ │ ├── hkQTransformf.cs │ │ │ ├── hkRangeInt32Attribute.cs │ │ │ ├── hkRangeRealAttribute.cs │ │ │ ├── hkRefCountedProperties.cs │ │ │ ├── hkRefCountedPropertiesEntry.cs │ │ │ ├── hkReferencedObject.cs │ │ │ ├── hkResourceBase.cs │ │ │ ├── hkResourceContainer.cs │ │ │ ├── hkResourceHandle.cs │ │ │ ├── hkRootLevelContainer.cs │ │ │ ├── hkRootLevelContainerNamedVariant.cs │ │ │ ├── hkScriptableAttribute.cs │ │ │ ├── hkSemanticsAttribute.cs │ │ │ ├── hkSetIntFloatPair.cs │ │ │ ├── hkSetUint32.cs │ │ │ ├── hkSetUint64.cs │ │ │ ├── hkSethkIntRealPairhkContainerHeapAllocatorhkMapOperationshkIntRealPair.cs │ │ │ ├── hkSetunsignedinthkContainerHeapAllocatorhkMapOperationsunsignedint.cs │ │ │ ├── hkSetunsignedlonglonghkContainerHeapAllocatorhkMapOperationsunsignedlonglong.cs │ │ │ ├── hkSimpleLocalFrame.cs │ │ │ ├── hkSimpleProperty.cs │ │ │ ├── hkSimplePropertyValue.cs │ │ │ ├── hkSkinBinding.cs │ │ │ ├── hkSkinnedMeshShape.cs │ │ │ ├── hkSkinnedMeshShapeBoneSection.cs │ │ │ ├── hkSkinnedMeshShapeBoneSet.cs │ │ │ ├── hkSkinnedMeshShapePart.cs │ │ │ ├── hkSkinnedRefMeshShape.cs │ │ │ ├── hkSphere.cs │ │ │ ├── hkStorageSkinnedMeshShape.cs │ │ │ ├── hkStringObject.cs │ │ │ ├── hkSweptTransformf.cs │ │ │ ├── hkUFloat8.cs │ │ │ ├── hkUiAttribute.cs │ │ │ ├── hkUuid.cs │ │ │ ├── hkVariableTweakingHelper.cs │ │ │ ├── hkVariableTweakingHelperBoolVariableInfo.cs │ │ │ ├── hkVariableTweakingHelperIntVariableInfo.cs │ │ │ ├── hkVariableTweakingHelperRealVariableInfo.cs │ │ │ ├── hkVariableTweakingHelperVector4VariableInfo.cs │ │ │ ├── hkVertexFormat.cs │ │ │ ├── hkVertexFormatElement.cs │ │ │ ├── hkWorldMemoryAvailableWatchDog.cs │ │ │ ├── hkaAngularReferenceFrame.cs │ │ │ ├── hkaAnimatedReferenceFrame.cs │ │ │ ├── hkaAnimation.cs │ │ │ ├── hkaAnimationBinding.cs │ │ │ ├── hkaAnimationContainer.cs │ │ │ ├── hkaAnimationPreviewColorContainer.cs │ │ │ ├── hkaAnnotationTrack.cs │ │ │ ├── hkaAnnotationTrackAnnotation.cs │ │ │ ├── hkaBone.cs │ │ │ ├── hkaBoneAttachment.cs │ │ │ ├── hkaDefaultAnimatedReferenceFrame.cs │ │ │ ├── hkaDirectionalReferenceFrame.cs │ │ │ ├── hkaFootstepAnalysisInfo.cs │ │ │ ├── hkaFootstepAnalysisInfoContainer.cs │ │ │ ├── hkaInterleavedUncompressedAnimation.cs │ │ │ ├── hkaKeyFrameHierarchyUtility.cs │ │ │ ├── hkaKeyFrameHierarchyUtilityControlData.cs │ │ │ ├── hkaMeshBinding.cs │ │ │ ├── hkaMeshBindingMapping.cs │ │ │ ├── hkaParameterizedAnimationReferenceFrame.cs │ │ │ ├── hkaParameterizedReferenceFrame.cs │ │ │ ├── hkaPredictiveCompressedAnimation.cs │ │ │ ├── hkaPredictiveCompressedAnimationTrackCompressionParams.cs │ │ │ ├── hkaQuantizedAnimation.cs │ │ │ ├── hkaQuantizedAnimationTrackCompressionParams.cs │ │ │ ├── hkaRagdollInstance.cs │ │ │ ├── hkaReferencePoseAnimation.cs │ │ │ ├── hkaSkeleton.cs │ │ │ ├── hkaSkeletonLocalFrameOnBone.cs │ │ │ ├── hkaSkeletonMapper.cs │ │ │ ├── hkaSkeletonMapperData.cs │ │ │ ├── hkaSkeletonMapperDataChainMapping.cs │ │ │ ├── hkaSkeletonMapperDataPartitionMappingRange.cs │ │ │ ├── hkaSkeletonMapperDataSimpleMapping.cs │ │ │ ├── hkaSkeletonPartition.cs │ │ │ ├── hkaSplineCompressedAnimation.cs │ │ │ ├── hkaSplineCompressedAnimationAnimationCompressionParams.cs │ │ │ ├── hkaSplineCompressedAnimationTrackCompressionParams.cs │ │ │ ├── hkaiAabbTreeNavVolumeMediator.cs │ │ │ ├── hkaiAdaptiveRanger.cs │ │ │ ├── hkaiAgentTraversalInfo.cs │ │ │ ├── hkaiAstarCostModifier.cs │ │ │ ├── hkaiAstarEdgeFilter.cs │ │ │ ├── hkaiAstarOutputParameters.cs │ │ │ ├── hkaiAvoidancePairProperties.cs │ │ │ ├── hkaiAvoidancePairPropertiesPairData.cs │ │ │ ├── hkaiAvoidanceProperties.cs │ │ │ ├── hkaiAvoidanceSolverBoundaryObstacle.cs │ │ │ ├── hkaiAvoidanceSolverSphereObstacle.cs │ │ │ ├── hkaiCarver.cs │ │ │ ├── hkaiCharacter.cs │ │ │ ├── hkaiClimbUpAnalyzer.cs │ │ │ ├── hkaiConvexHullSilhouetteMerger.cs │ │ │ ├── hkaiConvexSilhouetteSet.cs │ │ │ ├── hkaiCuttingGeometryInfo.cs │ │ │ ├── hkaiDefaultAstarCostModifier.cs │ │ │ ├── hkaiDefaultAstarEdgeFilter.cs │ │ │ ├── hkaiDirectedGraphExplicitCost.cs │ │ │ ├── hkaiDirectedGraphExplicitCostEdge.cs │ │ │ ├── hkaiDirectedGraphExplicitCostNode.cs │ │ │ ├── hkaiDirectedGraphInstance.cs │ │ │ ├── hkaiDirectedGraphInstanceFreeBlockList.cs │ │ │ ├── hkaiDropDownAnalyzer.cs │ │ │ ├── hkaiDuckUnderAnalyzer.cs │ │ │ ├── hkaiDynamicNavMeshQueryMediator.cs │ │ │ ├── hkaiDynamicNavVolumeMediator.cs │ │ │ ├── hkaiEdgeGeometry.cs │ │ │ ├── hkaiEdgeGeometryEdge.cs │ │ │ ├── hkaiEdgeGeometryFace.cs │ │ │ ├── hkaiEdgePath.cs │ │ │ ├── hkaiEdgePathEdge.cs │ │ │ ├── hkaiEdgePathFollowingCornerInfo.cs │ │ │ ├── hkaiGraphPathSearchParameters.cs │ │ │ ├── hkaiHierarchyUtils.cs │ │ │ ├── hkaiHierarchyUtilsClusterSettings.cs │ │ │ ├── hkaiIntervalPartitionLibrary.cs │ │ │ ├── hkaiIntervalPartitionLibraryPartitionRecord.cs │ │ │ ├── hkaiInvertedAabbVolume.cs │ │ │ ├── hkaiJumpAnalyzer.cs │ │ │ ├── hkaiLineOfSightUtilDirectPathInput.cs │ │ │ ├── hkaiLineOfSightUtilInputBase.cs │ │ │ ├── hkaiLineOfSightUtilLineOfSightInput.cs │ │ │ ├── hkaiLineOfSightUtilLineOfSightOutput.cs │ │ │ ├── hkaiLocalSteeringInput.cs │ │ │ ├── hkaiMaterialPainter.cs │ │ │ ├── hkaiMovementProperties.cs │ │ │ ├── hkaiNavMesh.cs │ │ │ ├── hkaiNavMeshCutter.cs │ │ │ ├── hkaiNavMeshCutterMeshInfo.cs │ │ │ ├── hkaiNavMeshCutterSavedConnectivity.cs │ │ │ ├── hkaiNavMeshEdge.cs │ │ │ ├── hkaiNavMeshEdgeMatchingParameters.cs │ │ │ ├── hkaiNavMeshFace.cs │ │ │ ├── hkaiNavMeshGenerationSettings.cs │ │ │ ├── hkaiNavMeshGenerationSettingsMaterialConstructionPair.cs │ │ │ ├── hkaiNavMeshGenerationSettingsOverrideSettings.cs │ │ │ ├── hkaiNavMeshGenerationSettingsRegionPruningSettings.cs │ │ │ ├── hkaiNavMeshGenerationSettingsWallClimbingSettings.cs │ │ │ ├── hkaiNavMeshGenerationSnapshot.cs │ │ │ ├── hkaiNavMeshInstance.cs │ │ │ ├── hkaiNavMeshPathRequestInfo.cs │ │ │ ├── hkaiNavMeshPathSearchParameters.cs │ │ │ ├── hkaiNavMeshQueryMediator.cs │ │ │ ├── hkaiNavMeshSimplificationSnapshot.cs │ │ │ ├── hkaiNavMeshSimplificationUtilsExtraVertexSettings.cs │ │ │ ├── hkaiNavMeshSimplificationUtilsSettings.cs │ │ │ ├── hkaiNavVolume.cs │ │ │ ├── hkaiNavVolumeCell.cs │ │ │ ├── hkaiNavVolumeEdge.cs │ │ │ ├── hkaiNavVolumeGenerationSettings.cs │ │ │ ├── hkaiNavVolumeGenerationSettingsChunkSettings.cs │ │ │ ├── hkaiNavVolumeGenerationSettingsMaterialConstructionInfo.cs │ │ │ ├── hkaiNavVolumeGenerationSettingsMergingSettings.cs │ │ │ ├── hkaiNavVolumeGenerationSnapshot.cs │ │ │ ├── hkaiNavVolumeInstance.cs │ │ │ ├── hkaiNavVolumeInstanceCellInstance.cs │ │ │ ├── hkaiNavVolumeMediator.cs │ │ │ ├── hkaiNavVolumePathRequestInfo.cs │ │ │ ├── hkaiNavVolumePathSearchParameters.cs │ │ │ ├── hkaiObstacleGenerator.cs │ │ │ ├── hkaiOverlapManager.cs │ │ │ ├── hkaiOverlapManagerSection.cs │ │ │ ├── hkaiOverlapManagerSectionGeneratorData.cs │ │ │ ├── hkaiOverlappingTriangles.cs │ │ │ ├── hkaiOverlappingTrianglesSettings.cs │ │ │ ├── hkaiPath.cs │ │ │ ├── hkaiPathFollowingProperties.cs │ │ │ ├── hkaiPathPathPoint.cs │ │ │ ├── hkaiPathfindingUtil.cs │ │ │ ├── hkaiPathfindingUtilFindGraphPathInput.cs │ │ │ ├── hkaiPathfindingUtilFindPathInput.cs │ │ │ ├── hkaiPathfindingUtilFindPathOutput.cs │ │ │ ├── hkaiPersistentEdgeKey.cs │ │ │ ├── hkaiPersistentFaceKey.cs │ │ │ ├── hkaiPhysics2012BodyObstacleGenerator.cs │ │ │ ├── hkaiPhysics2012BodySilhouetteGenerator.cs │ │ │ ├── hkaiPhysics2012ShapeVolume.cs │ │ │ ├── hkaiPhysicsBodyObstacleGenerator.cs │ │ │ ├── hkaiPhysicsBodySilhouetteGenerator.cs │ │ │ ├── hkaiPhysicsBodySilhouetteGeneratorBase.cs │ │ │ ├── hkaiPhysicsShapeVolume.cs │ │ │ ├── hkaiPlaneVolume.cs │ │ │ ├── hkaiPointCloudSilhouetteGenerator.cs │ │ │ ├── hkaiReferenceFrame.cs │ │ │ ├── hkaiReferenceFrameAndExtrusion.cs │ │ │ ├── hkaiSearchParameters.cs │ │ │ ├── hkaiSearchParametersBufferSizes.cs │ │ │ ├── hkaiSearchParametersSearchBuffers.cs │ │ │ ├── hkaiSilhouetteGenerationParameters.cs │ │ │ ├── hkaiSilhouetteGenerator.cs │ │ │ ├── hkaiSilhouetteGeneratorSectionContext.cs │ │ │ ├── hkaiSilhouetteMerger.cs │ │ │ ├── hkaiSilhouetteRecorderGraphLoadedEvent.cs │ │ │ ├── hkaiSilhouetteRecorderGraphUnloadedEvent.cs │ │ │ ├── hkaiSilhouetteRecorderInstanceLoadedEvent.cs │ │ │ ├── hkaiSilhouetteRecorderInstanceUnloadedEvent.cs │ │ │ ├── hkaiSilhouetteRecorderReplayEvent.cs │ │ │ ├── hkaiSilhouetteRecorderSilhouettesSteppedEvent.cs │ │ │ ├── hkaiSilhouetteRecorderVolumeLoadedEvent.cs │ │ │ ├── hkaiSilhouetteRecorderVolumeUnloadedEvent.cs │ │ │ ├── hkaiSilhouetteRecorderWorldConnectedEvent.cs │ │ │ ├── hkaiSilhouetteReferenceFrame.cs │ │ │ ├── hkaiSimpleObstacleGenerator.cs │ │ │ ├── hkaiSimpleSilhouetteMerger.cs │ │ │ ├── hkaiSplitGenerationSnapshot.cs │ │ │ ├── hkaiSplitGenerationUtils.cs │ │ │ ├── hkaiSplitGenerationUtilsSettings.cs │ │ │ ├── hkaiStaticTreeNavMeshQueryMediator.cs │ │ │ ├── hkaiStreamingCollection.cs │ │ │ ├── hkaiStreamingCollectionInstanceInfo.cs │ │ │ ├── hkaiStreamingSet.cs │ │ │ ├── hkaiStreamingSetGraphConnection.cs │ │ │ ├── hkaiStreamingSetNavMeshConnection.cs │ │ │ ├── hkaiStreamingSetVolumeConnection.cs │ │ │ ├── hkaiTraversalAnalysisInput.cs │ │ │ ├── hkaiTraversalAnalysisInputSection.cs │ │ │ ├── hkaiTraversalAnalysisSettings.cs │ │ │ ├── hkaiTraversalAnalyzer.cs │ │ │ ├── hkaiUserEdgePairArray.cs │ │ │ ├── hkaiUserEdgeSetupArray.cs │ │ │ ├── hkaiUserEdgeUtils.cs │ │ │ ├── hkaiUserEdgeUtilsObb.cs │ │ │ ├── hkaiUserEdgeUtilsUserEdgePair.cs │ │ │ ├── hkaiUserEdgeUtilsUserEdgeSetup.cs │ │ │ ├── hkaiVaultAnalyzer.cs │ │ │ ├── hkaiVolume.cs │ │ │ ├── hkaiVolumePathfindingUtil.cs │ │ │ ├── hkaiVolumePathfindingUtilFindPathInput.cs │ │ │ ├── hkaiVolumePathfindingUtilFindPathOutput.cs │ │ │ ├── hkaiWorld.cs │ │ │ ├── hkaiWorldCharacterStepSerializableContext.cs │ │ │ ├── hkbAiControlCancelPathCommand.cs │ │ │ ├── hkbAiControlControlData.cs │ │ │ ├── hkbAiControlControlDataBlendable.cs │ │ │ ├── hkbAiControlControlDataNonBlendable.cs │ │ │ ├── hkbAiControlPathToCommand.cs │ │ │ ├── hkbAlignBoneModifier.cs │ │ │ ├── hkbAnimatedSkeletonGenerator.cs │ │ │ ├── hkbAssetBundle.cs │ │ │ ├── hkbAssetBundleStringData.cs │ │ │ ├── hkbAttachmentModifier.cs │ │ │ ├── hkbAttachmentSetup.cs │ │ │ ├── hkbAttributeModifier.cs │ │ │ ├── hkbAttributeModifierAssignment.cs │ │ │ ├── hkbAuxiliaryNodeInfo.cs │ │ │ ├── hkbBehaviorEventsInfo.cs │ │ │ ├── hkbBehaviorGraph.cs │ │ │ ├── hkbBehaviorGraphData.cs │ │ │ ├── hkbBehaviorGraphInternalState.cs │ │ │ ├── hkbBehaviorGraphInternalStateInfo.cs │ │ │ ├── hkbBehaviorGraphStringData.cs │ │ │ ├── hkbBehaviorInfo.cs │ │ │ ├── hkbBehaviorInfoIdToNamePair.cs │ │ │ ├── hkbBehaviorReferenceGenerator.cs │ │ │ ├── hkbBindable.cs │ │ │ ├── hkbBlendCurveUtils.cs │ │ │ ├── hkbBlenderGenerator.cs │ │ │ ├── hkbBlenderGeneratorChild.cs │ │ │ ├── hkbBlenderGeneratorChildInternalState.cs │ │ │ ├── hkbBlenderGeneratorInternalState.cs │ │ │ ├── hkbBlendingTransitionEffect.cs │ │ │ ├── hkbBlendingTransitionEffectInternalState.cs │ │ │ ├── hkbBoneIndexArray.cs │ │ │ ├── hkbBoneWeightArray.cs │ │ │ ├── hkbBoolVariableSequencedData.cs │ │ │ ├── hkbBoolVariableSequencedDataSample.cs │ │ │ ├── hkbCameraShakeEventPayload.cs │ │ │ ├── hkbCameraVariablesChangedCommand.cs │ │ │ ├── hkbCharacter.cs │ │ │ ├── hkbCharacterAddedInfo.cs │ │ │ ├── hkbCharacterControlCommand.cs │ │ │ ├── hkbCharacterControllerModifier.cs │ │ │ ├── hkbCharacterControllerModifierControlData.cs │ │ │ ├── hkbCharacterControllerModifierInternalState.cs │ │ │ ├── hkbCharacterControllerSetup.cs │ │ │ ├── hkbCharacterData.cs │ │ │ ├── hkbCharacterInfo.cs │ │ │ ├── hkbCharacterSelectedInfo.cs │ │ │ ├── hkbCharacterSetup.cs │ │ │ ├── hkbCharacterSkinInfo.cs │ │ │ ├── hkbCharacterSteppedInfo.cs │ │ │ ├── hkbCharacterStringData.cs │ │ │ ├── hkbCharacterStringDataFileNameMeshNamePair.cs │ │ │ ├── hkbClientCharacterState.cs │ │ │ ├── hkbClipGenerator.cs │ │ │ ├── hkbClipGeneratorEcho.cs │ │ │ ├── hkbClipGeneratorInternalState.cs │ │ │ ├── hkbClipTrigger.cs │ │ │ ├── hkbClipTriggerArray.cs │ │ │ ├── hkbCombineTransformsModifier.cs │ │ │ ├── hkbCombineTransformsModifierInternalState.cs │ │ │ ├── hkbCompiledExpressionSet.cs │ │ │ ├── hkbCompiledExpressionSetToken.cs │ │ │ ├── hkbComputeDirectionModifier.cs │ │ │ ├── hkbComputeDirectionModifierInternalState.cs │ │ │ ├── hkbComputeRotationFromAxisAngleModifier.cs │ │ │ ├── hkbComputeRotationFromAxisAngleModifierInternalState.cs │ │ │ ├── hkbComputeRotationToTargetModifier.cs │ │ │ ├── hkbComputeRotationToTargetModifierInternalState.cs │ │ │ ├── hkbComputeWorldFromModelModifier.cs │ │ │ ├── hkbCondition.cs │ │ │ ├── hkbConstraintSetup.cs │ │ │ ├── hkbContext.cs │ │ │ ├── hkbCustomIdSelector.cs │ │ │ ├── hkbCustomTestGenerator.cs │ │ │ ├── hkbCustomTestGeneratorAnnotatedTypes.cs │ │ │ ├── hkbCustomTestGeneratorBoneTypes.cs │ │ │ ├── hkbCustomTestGeneratorComplexTypes.cs │ │ │ ├── hkbCustomTestGeneratorHiddenTypes.cs │ │ │ ├── hkbCustomTestGeneratorNestedTypes.cs │ │ │ ├── hkbCustomTestGeneratorNestedTypesBase.cs │ │ │ ├── hkbCustomTestGeneratorSimpleTypes.cs │ │ │ ├── hkbDampingModifier.cs │ │ │ ├── hkbDampingModifierInternalState.cs │ │ │ ├── hkbDefaultMessageLog.cs │ │ │ ├── hkbDelayedModifier.cs │ │ │ ├── hkbDelayedModifierInternalState.cs │ │ │ ├── hkbDetectCloseToGroundModifier.cs │ │ │ ├── hkbDetectCloseToGroundModifierInternalState.cs │ │ │ ├── hkbDockingGenerator.cs │ │ │ ├── hkbDockingGeneratorInternalState.cs │ │ │ ├── hkbEvaluateExpressionModifier.cs │ │ │ ├── hkbEvaluateExpressionModifierInternalExpressionData.cs │ │ │ ├── hkbEvaluateExpressionModifierInternalState.cs │ │ │ ├── hkbEvaluateHandleModifier.cs │ │ │ ├── hkbEvent.cs │ │ │ ├── hkbEventBase.cs │ │ │ ├── hkbEventDrivenModifier.cs │ │ │ ├── hkbEventDrivenModifierInternalState.cs │ │ │ ├── hkbEventInfo.cs │ │ │ ├── hkbEventPayload.cs │ │ │ ├── hkbEventPayloadList.cs │ │ │ ├── hkbEventProperty.cs │ │ │ ├── hkbEventRaisedInfo.cs │ │ │ ├── hkbEventRangeData.cs │ │ │ ├── hkbEventRangeDataArray.cs │ │ │ ├── hkbEventSequencedData.cs │ │ │ ├── hkbEventSequencedDataSequencedEvent.cs │ │ │ ├── hkbEventsFromRangeModifier.cs │ │ │ ├── hkbEventsFromRangeModifierInternalState.cs │ │ │ ├── hkbExpressionCondition.cs │ │ │ ├── hkbExpressionData.cs │ │ │ ├── hkbExpressionDataArray.cs │ │ │ ├── hkbExtractRagdollPoseModifier.cs │ │ │ ├── hkbExtrapolatingTransitionEffect.cs │ │ │ ├── hkbExtrapolatingTransitionEffectInternalState.cs │ │ │ ├── hkbFootIkControlData.cs │ │ │ ├── hkbFootIkControlsModifier.cs │ │ │ ├── hkbFootIkControlsModifierLeg.cs │ │ │ ├── hkbFootIkDriverInfo.cs │ │ │ ├── hkbFootIkDriverInfoLeg.cs │ │ │ ├── hkbFootIkGains.cs │ │ │ ├── hkbFootIkModifier.cs │ │ │ ├── hkbFootIkModifierInternalLegData.cs │ │ │ ├── hkbFootIkModifierLeg.cs │ │ │ ├── hkbGenerator.cs │ │ │ ├── hkbGeneratorOutputListener.cs │ │ │ ├── hkbGeneratorPartitionInfo.cs │ │ │ ├── hkbGeneratorSyncInfo.cs │ │ │ ├── hkbGeneratorSyncInfoActiveInterval.cs │ │ │ ├── hkbGeneratorSyncInfoSyncPoint.cs │ │ │ ├── hkbGeneratorTransitionEffect.cs │ │ │ ├── hkbGeneratorTransitionEffectInternalState.cs │ │ │ ├── hkbGetHandleOnBoneModifier.cs │ │ │ ├── hkbGetUpModifier.cs │ │ │ ├── hkbGetUpModifierInternalState.cs │ │ │ ├── hkbGetWorldFromModelModifier.cs │ │ │ ├── hkbGetWorldFromModelModifierInternalState.cs │ │ │ ├── hkbGravityModifier.cs │ │ │ ├── hkbHandIkControlData.cs │ │ │ ├── hkbHandIkControlsModifier.cs │ │ │ ├── hkbHandIkControlsModifierHand.cs │ │ │ ├── hkbHandIkDriverInfo.cs │ │ │ ├── hkbHandIkDriverInfoHand.cs │ │ │ ├── hkbHandIkModifier.cs │ │ │ ├── hkbHandIkModifierHand.cs │ │ │ ├── hkbHandle.cs │ │ │ ├── hkbHoldFromBlendingTransitionEffect.cs │ │ │ ├── hkbIntEventPayload.cs │ │ │ ├── hkbIntVariableSequencedData.cs │ │ │ ├── hkbIntVariableSequencedDataSample.cs │ │ │ ├── hkbJigglerGroup.cs │ │ │ ├── hkbJigglerModifier.cs │ │ │ ├── hkbJigglerModifierInternalState.cs │ │ │ ├── hkbKeyFrameControlData.cs │ │ │ ├── hkbKeyframeBonesModifier.cs │ │ │ ├── hkbKeyframeBonesModifierKeyframeInfo.cs │ │ │ ├── hkbLayer.cs │ │ │ ├── hkbLayerGenerator.cs │ │ │ ├── hkbLayerGeneratorInternalState.cs │ │ │ ├── hkbLayerGeneratorLayerInternalState.cs │ │ │ ├── hkbLeanRocketboxCharacterController.cs │ │ │ ├── hkbLeanRocketboxCharacterControllerInternalState.cs │ │ │ ├── hkbLinkedSymbolInfo.cs │ │ │ ├── hkbLookAtModifier.cs │ │ │ ├── hkbLookAtModifierInternalState.cs │ │ │ ├── hkbManualSelectorGenerator.cs │ │ │ ├── hkbManualSelectorGeneratorInternalState.cs │ │ │ ├── hkbManualSelectorTransitionEffect.cs │ │ │ ├── hkbManualSelectorTransitionEffectInternalState.cs │ │ │ ├── hkbMessageLog.cs │ │ │ ├── hkbMirrorModifier.cs │ │ │ ├── hkbMirroredSkeletonInfo.cs │ │ │ ├── hkbModifier.cs │ │ │ ├── hkbModifierGenerator.cs │ │ │ ├── hkbModifierList.cs │ │ │ ├── hkbModifierWrapper.cs │ │ │ ├── hkbMoveBoneAttachmentModifier.cs │ │ │ ├── hkbMoveCharacterModifier.cs │ │ │ ├── hkbMoveCharacterModifierInternalState.cs │ │ │ ├── hkbNamedEventPayload.cs │ │ │ ├── hkbNamedIntEventPayload.cs │ │ │ ├── hkbNamedRealEventPayload.cs │ │ │ ├── hkbNamedStringEventPayload.cs │ │ │ ├── hkbNode.cs │ │ │ ├── hkbNodeInternalStateInfo.cs │ │ │ ├── hkbParametricMotionGenerator.cs │ │ │ ├── hkbParticleSystemEventPayload.cs │ │ │ ├── hkbPinBonesGenerator.cs │ │ │ ├── hkbPoseMatchingGenerator.cs │ │ │ ├── hkbPoseMatchingGeneratorInternalState.cs │ │ │ ├── hkbPoseStoringGeneratorOutputListener.cs │ │ │ ├── hkbPoseStoringGeneratorOutputListenerStoredPose.cs │ │ │ ├── hkbPoweredRagdollControlData.cs │ │ │ ├── hkbPoweredRagdollControlsModifier.cs │ │ │ ├── hkbProceduralBlenderGenerator.cs │ │ │ ├── hkbProjectData.cs │ │ │ ├── hkbProjectStringData.cs │ │ │ ├── hkbRadialSelectorGenerator.cs │ │ │ ├── hkbRadialSelectorGeneratorGeneratorInfo.cs │ │ │ ├── hkbRadialSelectorGeneratorGeneratorPair.cs │ │ │ ├── hkbRagdollControllerSetup.cs │ │ │ ├── hkbRagdollInterface.cs │ │ │ ├── hkbRaiseEventCommand.cs │ │ │ ├── hkbRealEventPayload.cs │ │ │ ├── hkbRealVariableSequencedData.cs │ │ │ ├── hkbRealVariableSequencedDataSample.cs │ │ │ ├── hkbRebuildScriptsCommand.cs │ │ │ ├── hkbReferencePoseGenerator.cs │ │ │ ├── hkbReferencedGeneratorSyncInfo.cs │ │ │ ├── hkbRigidBodyRagdollControlData.cs │ │ │ ├── hkbRigidBodyRagdollControlsModifier.cs │ │ │ ├── hkbRigidBodySetup.cs │ │ │ ├── hkbRocketboxCharacterController.cs │ │ │ ├── hkbRocketboxCharacterControllerInternalState.cs │ │ │ ├── hkbRoleAttribute.cs │ │ │ ├── hkbRotateCharacterModifier.cs │ │ │ ├── hkbRotateCharacterModifierInternalState.cs │ │ │ ├── hkbScriptCondition.cs │ │ │ ├── hkbScriptGenerator.cs │ │ │ ├── hkbSenseHandleModifier.cs │ │ │ ├── hkbSenseHandleModifierRange.cs │ │ │ ├── hkbSequence.cs │ │ │ ├── hkbSequenceInternalState.cs │ │ │ ├── hkbSequenceStringData.cs │ │ │ ├── hkbSequencedData.cs │ │ │ ├── hkbSetBehaviorCommand.cs │ │ │ ├── hkbSetLocalTimeOfClipGeneratorCommand.cs │ │ │ ├── hkbSetNodePropertyCommand.cs │ │ │ ├── hkbSetSelectedCharacterCommand.cs │ │ │ ├── hkbSetWordVariableCommand.cs │ │ │ ├── hkbSetWorldFromModelModifier.cs │ │ │ ├── hkbShapeSetup.cs │ │ │ ├── hkbSimulationControlCommand.cs │ │ │ ├── hkbSimulationStateInfo.cs │ │ │ ├── hkbStateChooser.cs │ │ │ ├── hkbStateChooserWrapper.cs │ │ │ ├── hkbStateDependentModifier.cs │ │ │ ├── hkbStateListener.cs │ │ │ ├── hkbStateMachine.cs │ │ │ ├── hkbStateMachineActiveTransitionInfo.cs │ │ │ ├── hkbStateMachineDelayedTransitionInfo.cs │ │ │ ├── hkbStateMachineEventPropertyArray.cs │ │ │ ├── hkbStateMachineInternalState.cs │ │ │ ├── hkbStateMachineNestedStateMachineData.cs │ │ │ ├── hkbStateMachineProspectiveTransitionInfo.cs │ │ │ ├── hkbStateMachineStateInfo.cs │ │ │ ├── hkbStateMachineTimeInterval.cs │ │ │ ├── hkbStateMachineTransitionInfo.cs │ │ │ ├── hkbStateMachineTransitionInfoArray.cs │ │ │ ├── hkbStateMachineTransitionInfoReference.cs │ │ │ ├── hkbStringCondition.cs │ │ │ ├── hkbStringEventPayload.cs │ │ │ ├── hkbTestIdSelector.cs │ │ │ ├── hkbTimerModifier.cs │ │ │ ├── hkbTimerModifierInternalState.cs │ │ │ ├── hkbToolNodeType.cs │ │ │ ├── hkbTransformVectorModifier.cs │ │ │ ├── hkbTransformVectorModifierInternalState.cs │ │ │ ├── hkbTransitionEffect.cs │ │ │ ├── hkbTwistModifier.cs │ │ │ ├── hkbVariableBindingSet.cs │ │ │ ├── hkbVariableBindingSetBinding.cs │ │ │ ├── hkbVariableBounds.cs │ │ │ ├── hkbVariableInfo.cs │ │ │ ├── hkbVariableValue.cs │ │ │ ├── hkbVariableValueSet.cs │ │ │ ├── hkbWorldEnums.cs │ │ │ ├── hkbWorldFromModelModeData.cs │ │ │ ├── hkbnpRagdollInterface.cs │ │ │ ├── hkbpBalanceModifier.cs │ │ │ ├── hkbpBalanceModifierStepInfo.cs │ │ │ ├── hkbpBalanceRadialSelectorGenerator.cs │ │ │ ├── hkbpCatchFallModifier.cs │ │ │ ├── hkbpCatchFallModifierHand.cs │ │ │ ├── hkbpCheckBalanceModifier.cs │ │ │ ├── hkbpCheckRagdollSpeedModifier.cs │ │ │ ├── hkbpConstrainRigidBodyModifier.cs │ │ │ ├── hkbpControlledReachModifier.cs │ │ │ ├── hkbpFaceTargetModifier.cs │ │ │ ├── hkbpMoveBoneTowardTargetModifier.cs │ │ │ ├── hkbpReachModifier.cs │ │ │ ├── hkbpReachModifierHand.cs │ │ │ ├── hkbpReachTowardTargetModifier.cs │ │ │ ├── hkbpReachTowardTargetModifierHand.cs │ │ │ ├── hkbpTarget.cs │ │ │ ├── hkbpTargetRigidBodyModifier.cs │ │ │ ├── hkcdAdf.cs │ │ │ ├── hkcdDynamicAabbTree.cs │ │ │ ├── hkcdDynamicTreeAnisotropicMetric.cs │ │ │ ├── hkcdDynamicTreeBalanceMetric.cs │ │ │ ├── hkcdDynamicTreeCentroidMetric.cs │ │ │ ├── hkcdDynamicTreeCodec18.cs │ │ │ ├── hkcdDynamicTreeCodec32.cs │ │ │ ├── hkcdDynamicTreeCodecInt16.cs │ │ │ ├── hkcdDynamicTreeCodecInt16IntAabb.cs │ │ │ ├── hkcdDynamicTreeCodecRawUint.cs │ │ │ ├── hkcdDynamicTreeCodecRawUlong.cs │ │ │ ├── hkcdDynamicTreeCodecRawunsignedint.cs │ │ │ ├── hkcdDynamicTreeCodecRawunsignedlong.cs │ │ │ ├── hkcdDynamicTreeDefaultDynamicStoragehkcdDynamicTreeCodec32.cs │ │ │ ├── hkcdDynamicTreeDefaultDynamicStoragehkcdDynamicTreeCodecInt16.cs │ │ │ ├── hkcdDynamicTreeDefaultDynamicStoragehkcdDynamicTreeCodecRawUint.cs │ │ │ ├── hkcdDynamicTreeDefaultDynamicStoragehkcdDynamicTreeCodecRawUlong.cs │ │ │ ├── hkcdDynamicTreeDefaultTree32Storage.cs │ │ │ ├── hkcdDynamicTreeDefaultTree48Storage.cs │ │ │ ├── hkcdDynamicTreeDefaultTreeInt16Storage.cs │ │ │ ├── hkcdDynamicTreeDefaultTreePtrStorage.cs │ │ │ ├── hkcdDynamicTreeDynamicStorage0hkcdDynamicTreeAnisotropicMetrichkcdDynamicTreeCodec32.cs │ │ │ ├── hkcdDynamicTreeDynamicStorage0hkcdDynamicTreeAnisotropicMetrichkcdDynamicTreeCodecInt16.cs │ │ │ ├── hkcdDynamicTreeDynamicStorage0hkcdDynamicTreeAnisotropicMetrichkcdDynamicTreeCodecRawUint.cs │ │ │ ├── hkcdDynamicTreeDynamicStorage0hkcdDynamicTreeAnisotropicMetrichkcdDynamicTreeCodecRawUlong.cs │ │ │ ├── hkcdDynamicTreeDynamicStorage16.cs │ │ │ ├── hkcdDynamicTreeDynamicStorage32.cs │ │ │ ├── hkcdDynamicTreeDynamicStorageInt16.cs │ │ │ ├── hkcdDynamicTreeDynamicStoragePtr.cs │ │ │ ├── hkcdDynamicTreeTreehkcdDynamicTreeDynamicStorage16.cs │ │ │ ├── hkcdDynamicTreeTreehkcdDynamicTreeDynamicStorage32.cs │ │ │ ├── hkcdDynamicTreeTreehkcdDynamicTreeDynamicStorageInt16.cs │ │ │ ├── hkcdDynamicTreeTreehkcdDynamicTreeDynamicStoragePtr.cs │ │ │ ├── hkcdFourAabb.cs │ │ │ ├── hkcdPlanarCsgOperand.cs │ │ │ ├── hkcdPlanarCsgOperandGeomSource.cs │ │ │ ├── hkcdPlanarEntity.cs │ │ │ ├── hkcdPlanarGeometry.cs │ │ │ ├── hkcdPlanarGeometryPlanesCollection.cs │ │ │ ├── hkcdPlanarGeometryPolygonCollection.cs │ │ │ ├── hkcdPlanarGeometryPrimitivesCollection28.cs │ │ │ ├── hkcdPlanarGeometryPrimitivesPlane.cs │ │ │ ├── hkcdPlanarSolid.cs │ │ │ ├── hkcdPlanarSolidNode.cs │ │ │ ├── hkcdPlanarSolidNodeStorage.cs │ │ │ ├── hkcdShape.cs │ │ │ ├── hkcdShapeDispatchType.cs │ │ │ ├── hkcdShapeInfoCodecType.cs │ │ │ ├── hkcdShapeType.cs │ │ │ ├── hkcdSimdTree.cs │ │ │ ├── hkcdSimdTreeNode.cs │ │ │ ├── hkcdStaticAabbTree.cs │ │ │ ├── hkcdStaticMeshTreeBase.cs │ │ │ ├── hkcdStaticMeshTreeBasePrimitive.cs │ │ │ ├── hkcdStaticMeshTreeBasePrimitiveDataRunBasehknpCompressedMeshShapeTreeDataRunData.cs │ │ │ ├── hkcdStaticMeshTreeBasePrimitiveDataRunBaseunsignedint.cs │ │ │ ├── hkcdStaticMeshTreeBasePrimitiveDataRunBaseunsignedshort.cs │ │ │ ├── hkcdStaticMeshTreeBaseSection.cs │ │ │ ├── hkcdStaticMeshTreeBaseSectionDataRuns.cs │ │ │ ├── hkcdStaticMeshTreeBaseSectionPrimitives.cs │ │ │ ├── hkcdStaticMeshTreeBaseSectionSharedVertices.cs │ │ │ ├── hkcdStaticMeshTreeDefaultDataRun.cs │ │ │ ├── hkcdStaticMeshTreehkcdStaticMeshTreeCommonConfigunsignedintunsignedlonglong1121hknpCompressedMeshShapeTreeDataRun.cs │ │ │ ├── hkcdStaticMeshTreehkcdStaticMeshTreeCommonConfigunsignedintunsignedlonglong1121hkpBvCompressedMeshShapeTreeDataRun.cs │ │ │ ├── hkcdStaticPvs.cs │ │ │ ├── hkcdStaticPvsBlockHeader.cs │ │ │ ├── hkcdStaticTreeCodec3Axis.cs │ │ │ ├── hkcdStaticTreeCodec3Axis4.cs │ │ │ ├── hkcdStaticTreeCodec3Axis5.cs │ │ │ ├── hkcdStaticTreeCodec3Axis6.cs │ │ │ ├── hkcdStaticTreeCodecRaw.cs │ │ │ ├── hkcdStaticTreeDefaultTreeStorage32.cs │ │ │ ├── hkcdStaticTreeDefaultTreeStorage4.cs │ │ │ ├── hkcdStaticTreeDefaultTreeStorage5.cs │ │ │ ├── hkcdStaticTreeDefaultTreeStorage6.cs │ │ │ ├── hkcdStaticTreeDynamicStorage32.cs │ │ │ ├── hkcdStaticTreeDynamicStorage4.cs │ │ │ ├── hkcdStaticTreeDynamicStorage5.cs │ │ │ ├── hkcdStaticTreeDynamicStorage6.cs │ │ │ ├── hkcdStaticTreeDynamicStoragehkcdStaticTreeCodec3Axis4.cs │ │ │ ├── hkcdStaticTreeDynamicStoragehkcdStaticTreeCodec3Axis5.cs │ │ │ ├── hkcdStaticTreeDynamicStoragehkcdStaticTreeCodec3Axis6.cs │ │ │ ├── hkcdStaticTreeDynamicStoragehkcdStaticTreeCodecRaw.cs │ │ │ ├── hkcdStaticTreeTreehkcdStaticTreeDynamicStorage32.cs │ │ │ ├── hkcdStaticTreeTreehkcdStaticTreeDynamicStorage4.cs │ │ │ ├── hkcdStaticTreeTreehkcdStaticTreeDynamicStorage5.cs │ │ │ ├── hkcdStaticTreeTreehkcdStaticTreeDynamicStorage6.cs │ │ │ ├── hknpAction.cs │ │ │ ├── hknpArrayAction.cs │ │ │ ├── hknpBallGun.cs │ │ │ ├── hknpBinaryAction.cs │ │ │ ├── hknpBody.cs │ │ │ ├── hknpBodyCinfo.cs │ │ │ ├── hknpBodyQuality.cs │ │ │ ├── hknpBodyQualityLibrary.cs │ │ │ ├── hknpBodyReference.cs │ │ │ ├── hknpBreakableConstraintData.cs │ │ │ ├── hknpBridgeConstraintAtom.cs │ │ │ ├── hknpBroadPhaseConfig.cs │ │ │ ├── hknpBroadPhaseConfigLayer.cs │ │ │ ├── hknpCapsuleShape.cs │ │ │ ├── hknpCharacterProxyCinfo.cs │ │ │ ├── hknpCharacterRigidBodyCinfo.cs │ │ │ ├── hknpCircularSurfaceVelocity.cs │ │ │ ├── hknpCollisionDispatchType.cs │ │ │ ├── hknpCollisionFilter.cs │ │ │ ├── hknpCompositeShape.cs │ │ │ ├── hknpCompoundShape.cs │ │ │ ├── hknpCompoundShapeInternalsKeyMask.cs │ │ │ ├── hknpCompoundShapeKeyMask.cs │ │ │ ├── hknpCompressedHeightFieldShape.cs │ │ │ ├── hknpCompressedMeshShape.cs │ │ │ ├── hknpCompressedMeshShapeData.cs │ │ │ ├── hknpCompressedMeshShapeInternalsKeyMask.cs │ │ │ ├── hknpCompressedMeshShapeTree.cs │ │ │ ├── hknpCompressedMeshShapeTreeDataRun.cs │ │ │ ├── hknpCompressedMeshShapeTreeDataRunData.cs │ │ │ ├── hknpConstraint.cs │ │ │ ├── hknpConstraintCinfo.cs │ │ │ ├── hknpConstraintCollisionFilter.cs │ │ │ ├── hknpConvexPolytopeShape.cs │ │ │ ├── hknpConvexPolytopeShapeFace.cs │ │ │ ├── hknpConvexShape.cs │ │ │ ├── hknpDecoratorShape.cs │ │ │ ├── hknpDefaultBroadPhaseConfig.cs │ │ │ ├── hknpDefaultExternMeshShapeGeometry.cs │ │ │ ├── hknpDestructionShapeProperties.cs │ │ │ ├── hknpDisableCollisionFilter.cs │ │ │ ├── hknpDummyShape.cs │ │ │ ├── hknpDynamicCompoundShape.cs │ │ │ ├── hknpDynamicCompoundShapeData.cs │ │ │ ├── hknpDynamicCompoundShapeTree.cs │ │ │ ├── hknpExternMeshShape.cs │ │ │ ├── hknpExternMeshShapeData.cs │ │ │ ├── hknpExternMeshShapeGeometry.cs │ │ │ ├── hknpFirstPersonGun.cs │ │ │ ├── hknpGroupCollisionFilter.cs │ │ │ ├── hknpGroupCollisionFilterBasehknpGroupCollisionFilterTypesConfig55516.cs │ │ │ ├── hknpHeightFieldShape.cs │ │ │ ├── hknpLinearSurfaceVelocity.cs │ │ │ ├── hknpLodShape.cs │ │ │ ├── hknpLodShapeLevelOfDetailInfo.cs │ │ │ ├── hknpMalleableConstraintData.cs │ │ │ ├── hknpMaskedShape.cs │ │ │ ├── hknpMaskedShapeMaskWrapper.cs │ │ │ ├── hknpMaterial.cs │ │ │ ├── hknpMaterialDescriptor.cs │ │ │ ├── hknpMaterialLibrary.cs │ │ │ ├── hknpMaterialPalette.cs │ │ │ ├── hknpMinMaxQuadTree.cs │ │ │ ├── hknpMinMaxQuadTreeMinMaxLevel.cs │ │ │ ├── hknpMotion.cs │ │ │ ├── hknpMotionCinfo.cs │ │ │ ├── hknpMotionProperties.cs │ │ │ ├── hknpMotionPropertiesLibrary.cs │ │ │ ├── hknpPairCollisionFilter.cs │ │ │ ├── hknpPairCollisionFilterMapPairFilterKeyOverrideType.cs │ │ │ ├── hknpPhysicsSceneData.cs │ │ │ ├── hknpPhysicsSystemData.cs │ │ │ ├── hknpProjectileGun.cs │ │ │ ├── hknpRagdollData.cs │ │ │ ├── hknpRagdollKeyFrameHierarchyUtilityControlData.cs │ │ │ ├── hknpRefMaterial.cs │ │ │ ├── hknpRefWorldCinfo.cs │ │ │ ├── hknpScaledConvexShape.cs │ │ │ ├── hknpScaledConvexShapeBase.cs │ │ │ ├── hknpShape.cs │ │ │ ├── hknpShapeInstance.cs │ │ │ ├── hknpShapeKeyMask.cs │ │ │ ├── hknpShapeMassProperties.cs │ │ │ ├── hknpShapeSignals.cs │ │ │ ├── hknpShapeTagCodec.cs │ │ │ ├── hknpShapeType.cs │ │ │ ├── hknpSparseCompactMapunsignedshort.cs │ │ │ ├── hknpSphereShape.cs │ │ │ ├── hknpStaticCompoundShape.cs │ │ │ ├── hknpStaticCompoundShapeData.cs │ │ │ ├── hknpStaticCompoundShapeInternals.cs │ │ │ ├── hknpStaticCompoundShapeKeyMask.cs │ │ │ ├── hknpStaticCompoundShapeTree.cs │ │ │ ├── hknpSurfaceVelocity.cs │ │ │ ├── hknpTriangleShape.cs │ │ │ ├── hknpTyremarkPoint.cs │ │ │ ├── hknpTyremarksInfo.cs │ │ │ ├── hknpTyremarksWheel.cs │ │ │ ├── hknpUnaryAction.cs │ │ │ ├── hknpVehicleAerodynamics.cs │ │ │ ├── hknpVehicleBrake.cs │ │ │ ├── hknpVehicleData.cs │ │ │ ├── hknpVehicleDataWheelComponentParams.cs │ │ │ ├── hknpVehicleDefaultAerodynamics.cs │ │ │ ├── hknpVehicleDefaultAnalogDriverInput.cs │ │ │ ├── hknpVehicleDefaultBrake.cs │ │ │ ├── hknpVehicleDefaultBrakeWheelBrakingProperties.cs │ │ │ ├── hknpVehicleDefaultEngine.cs │ │ │ ├── hknpVehicleDefaultSteering.cs │ │ │ ├── hknpVehicleDefaultSuspension.cs │ │ │ ├── hknpVehicleDefaultSuspensionWheelSpringSuspensionParameters.cs │ │ │ ├── hknpVehicleDefaultTransmission.cs │ │ │ ├── hknpVehicleDefaultVelocityDamper.cs │ │ │ ├── hknpVehicleDriverInput.cs │ │ │ ├── hknpVehicleDriverInputAnalogStatus.cs │ │ │ ├── hknpVehicleDriverInputStatus.cs │ │ │ ├── hknpVehicleEngine.cs │ │ │ ├── hknpVehicleInstance.cs │ │ │ ├── hknpVehicleInstanceWheelInfo.cs │ │ │ ├── hknpVehicleLinearCastWheelCollide.cs │ │ │ ├── hknpVehicleLinearCastWheelCollideWheelState.cs │ │ │ ├── hknpVehicleRayCastWheelCollide.cs │ │ │ ├── hknpVehicleSteering.cs │ │ │ ├── hknpVehicleSuspension.cs │ │ │ ├── hknpVehicleSuspensionSuspensionWheelParameters.cs │ │ │ ├── hknpVehicleTransmission.cs │ │ │ ├── hknpVehicleVelocityDamper.cs │ │ │ ├── hknpVehicleWheelCollide.cs │ │ │ ├── hknpWorldCinfo.cs │ │ │ ├── hknpWorldSnapshot.cs │ │ │ ├── hkp2dAngConstraintAtom.cs │ │ │ ├── hkp3dAngConstraintAtom.cs │ │ │ ├── hkpAabbPhantom.cs │ │ │ ├── hkpAction.cs │ │ │ ├── hkpAgent1nSector.cs │ │ │ ├── hkpAngConstraintAtom.cs │ │ │ ├── hkpAngFrictionConstraintAtom.cs │ │ │ ├── hkpAngLimitConstraintAtom.cs │ │ │ ├── hkpAngMotorConstraintAtom.cs │ │ │ ├── hkpAngularDashpotAction.cs │ │ │ ├── hkpArrayAction.cs │ │ │ ├── hkpBallAndSocketConstraintData.cs │ │ │ ├── hkpBallAndSocketConstraintDataAtoms.cs │ │ │ ├── hkpBallGun.cs │ │ │ ├── hkpBallSocketChainData.cs │ │ │ ├── hkpBallSocketChainDataConstraintInfo.cs │ │ │ ├── hkpBallSocketConstraintAtom.cs │ │ │ ├── hkpBinaryAction.cs │ │ │ ├── hkpBoxMotion.cs │ │ │ ├── hkpBoxShape.cs │ │ │ ├── hkpBreakableBody.cs │ │ │ ├── hkpBreakableBodyController.cs │ │ │ ├── hkpBreakableConstraintData.cs │ │ │ ├── hkpBreakableMaterial.cs │ │ │ ├── hkpBreakableMultiMaterial.cs │ │ │ ├── hkpBreakableMultiMaterialInverseMapping.cs │ │ │ ├── hkpBreakableMultiMaterialInverseMappingDescriptor.cs │ │ │ ├── hkpBreakableShape.cs │ │ │ ├── hkpBridgeAtoms.cs │ │ │ ├── hkpBridgeConstraintAtom.cs │ │ │ ├── hkpBroadPhaseHandle.cs │ │ │ ├── hkpBvCompressedMeshShape.cs │ │ │ ├── hkpBvCompressedMeshShapeTree.cs │ │ │ ├── hkpBvCompressedMeshShapeTreeDataRun.cs │ │ │ ├── hkpBvShape.cs │ │ │ ├── hkpBvTreeShape.cs │ │ │ ├── hkpCachingShapePhantom.cs │ │ │ ├── hkpCallbackConstraintMotor.cs │ │ │ ├── hkpCapsuleShape.cs │ │ │ ├── hkpCdBody.cs │ │ │ ├── hkpCenterOfMassChangerModifierConstraintAtom.cs │ │ │ ├── hkpCharacterControllerCinfo.cs │ │ │ ├── hkpCharacterMotion.cs │ │ │ ├── hkpCharacterProxyCinfo.cs │ │ │ ├── hkpCharacterRigidBodyCinfo.cs │ │ │ ├── hkpCogWheelConstraintAtom.cs │ │ │ ├── hkpCogWheelConstraintData.cs │ │ │ ├── hkpCogWheelConstraintDataAtoms.cs │ │ │ ├── hkpCollidable.cs │ │ │ ├── hkpCollidableBoundingVolumeData.cs │ │ │ ├── hkpCollidableCollidableFilter.cs │ │ │ ├── hkpCollisionFilter.cs │ │ │ ├── hkpCollisionFilterList.cs │ │ │ ├── hkpCompressedMeshShape.cs │ │ │ ├── hkpCompressedMeshShapeBigTriangle.cs │ │ │ ├── hkpCompressedMeshShapeChunk.cs │ │ │ ├── hkpCompressedMeshShapeConvexPiece.cs │ │ │ ├── hkpConeLimitConstraintAtom.cs │ │ │ ├── hkpConstrainedSystemFilter.cs │ │ │ ├── hkpConstraintAtom.cs │ │ │ ├── hkpConstraintChainData.cs │ │ │ ├── hkpConstraintChainInstance.cs │ │ │ ├── hkpConstraintChainInstanceAction.cs │ │ │ ├── hkpConstraintCollisionFilter.cs │ │ │ ├── hkpConstraintData.cs │ │ │ ├── hkpConstraintInstance.cs │ │ │ ├── hkpConstraintInstanceSmallArraySerializeOverrideType.cs │ │ │ ├── hkpConstraintMotor.cs │ │ │ ├── hkpConvexListFilter.cs │ │ │ ├── hkpConvexListShape.cs │ │ │ ├── hkpConvexPieceMeshShape.cs │ │ │ ├── hkpConvexPieceStreamData.cs │ │ │ ├── hkpConvexShape.cs │ │ │ ├── hkpConvexTransformShape.cs │ │ │ ├── hkpConvexTransformShapeBase.cs │ │ │ ├── hkpConvexTranslateShape.cs │ │ │ ├── hkpConvexVerticesConnectivity.cs │ │ │ ├── hkpConvexVerticesShape.cs │ │ │ ├── hkpCylinderShape.cs │ │ │ ├── hkpDashpotAction.cs │ │ │ ├── hkpDefaultConvexListFilter.cs │ │ │ ├── hkpDefaultWorldMemoryWatchDog.cs │ │ │ ├── hkpDeformableAngConstraintAtom.cs │ │ │ ├── hkpDeformableFixedConstraintData.cs │ │ │ ├── hkpDeformableFixedConstraintDataAtoms.cs │ │ │ ├── hkpDeformableLinConstraintAtom.cs │ │ │ ├── hkpDisableEntityCollisionFilter.cs │ │ │ ├── hkpDisplayBindingData.cs │ │ │ ├── hkpDisplayBindingDataPhysicsSystem.cs │ │ │ ├── hkpDisplayBindingDataRigidBody.cs │ │ │ ├── hkpEntity.cs │ │ │ ├── hkpEntityExtendedListeners.cs │ │ │ ├── hkpEntitySmallArraySerializeOverrideType.cs │ │ │ ├── hkpEntitySpuCollisionCallback.cs │ │ │ ├── hkpExtendedMeshShape.cs │ │ │ ├── hkpExtendedMeshShapeBreakableMaterial.cs │ │ │ ├── hkpExtendedMeshShapeShapesSubpart.cs │ │ │ ├── hkpExtendedMeshShapeSubpart.cs │ │ │ ├── hkpExtendedMeshShapeTrianglesSubpart.cs │ │ │ ├── hkpFastMeshShape.cs │ │ │ ├── hkpFirstPersonGun.cs │ │ │ ├── hkpFixedConstraintData.cs │ │ │ ├── hkpFixedConstraintDataAtoms.cs │ │ │ ├── hkpFixedRigidMotion.cs │ │ │ ├── hkpGenericConstraintData.cs │ │ │ ├── hkpGenericConstraintDataScheme.cs │ │ │ ├── hkpGenericConstraintDataSchemeConstraintInfo.cs │ │ │ ├── hkpGravityGun.cs │ │ │ ├── hkpGroupCollisionFilter.cs │ │ │ ├── hkpGroupFilter.cs │ │ │ ├── hkpHingeConstraintData.cs │ │ │ ├── hkpHingeConstraintDataAtoms.cs │ │ │ ├── hkpHingeLimitsData.cs │ │ │ ├── hkpHingeLimitsDataAtoms.cs │ │ │ ├── hkpIgnoreModifierConstraintAtom.cs │ │ │ ├── hkpKeyframedRigidMotion.cs │ │ │ ├── hkpLimitedForceConstraintMotor.cs │ │ │ ├── hkpLimitedHingeConstraintData.cs │ │ │ ├── hkpLimitedHingeConstraintDataAtoms.cs │ │ │ ├── hkpLinConstraintAtom.cs │ │ │ ├── hkpLinFrictionConstraintAtom.cs │ │ │ ├── hkpLinLimitConstraintAtom.cs │ │ │ ├── hkpLinMotorConstraintAtom.cs │ │ │ ├── hkpLinSoftConstraintAtom.cs │ │ │ ├── hkpLinearClearanceConstraintData.cs │ │ │ ├── hkpLinearClearanceConstraintDataAtoms.cs │ │ │ ├── hkpLinearParametricCurve.cs │ │ │ ├── hkpLinkedCollidable.cs │ │ │ ├── hkpListShape.cs │ │ │ ├── hkpListShapeBreakableMaterial.cs │ │ │ ├── hkpListShapeChildInfo.cs │ │ │ ├── hkpMalleableConstraintData.cs │ │ │ ├── hkpMassChangerModifierConstraintAtom.cs │ │ │ ├── hkpMaterial.cs │ │ │ ├── hkpMaxSizeMotion.cs │ │ │ ├── hkpMeshMaterial.cs │ │ │ ├── hkpMeshShape.cs │ │ │ ├── hkpMeshShapeSubpart.cs │ │ │ ├── hkpModifierConstraintAtom.cs │ │ │ ├── hkpMoppBvTreeShape.cs │ │ │ ├── hkpMoppCode.cs │ │ │ ├── hkpMoppCodeCodeInfo.cs │ │ │ ├── hkpMoppCodeReindexedTerminal.cs │ │ │ ├── hkpMotion.cs │ │ │ ├── hkpMotorAction.cs │ │ │ ├── hkpMountedBallGun.cs │ │ │ ├── hkpMouseSpringAction.cs │ │ │ ├── hkpMovingSurfaceModifierConstraintAtom.cs │ │ │ ├── hkpMultiRayShape.cs │ │ │ ├── hkpMultiRayShapeRay.cs │ │ │ ├── hkpMultiSphereShape.cs │ │ │ ├── hkpNamedMeshMaterial.cs │ │ │ ├── hkpNullCollisionFilter.cs │ │ │ ├── hkpOverwritePivotConstraintAtom.cs │ │ │ ├── hkpPairCollisionFilter.cs │ │ │ ├── hkpPairCollisionFilterMapPairFilterKeyOverrideType.cs │ │ │ ├── hkpParametricCurve.cs │ │ │ ├── hkpPhantom.cs │ │ │ ├── hkpPhantomCallbackShape.cs │ │ │ ├── hkpPhysicsData.cs │ │ │ ├── hkpPhysicsSystem.cs │ │ │ ├── hkpPhysicsSystemWithContacts.cs │ │ │ ├── hkpPointToPathConstraintData.cs │ │ │ ├── hkpPointToPlaneConstraintData.cs │ │ │ ├── hkpPointToPlaneConstraintDataAtoms.cs │ │ │ ├── hkpPositionConstraintMotor.cs │ │ │ ├── hkpPoweredChainData.cs │ │ │ ├── hkpPoweredChainDataConstraintInfo.cs │ │ │ ├── hkpPoweredChainMapper.cs │ │ │ ├── hkpPoweredChainMapperLinkInfo.cs │ │ │ ├── hkpPoweredChainMapperTarget.cs │ │ │ ├── hkpPrismaticConstraintData.cs │ │ │ ├── hkpPrismaticConstraintDataAtoms.cs │ │ │ ├── hkpProjectileGun.cs │ │ │ ├── hkpPulleyConstraintAtom.cs │ │ │ ├── hkpPulleyConstraintData.cs │ │ │ ├── hkpPulleyConstraintDataAtoms.cs │ │ │ ├── hkpRackAndPinionConstraintAtom.cs │ │ │ ├── hkpRackAndPinionConstraintData.cs │ │ │ ├── hkpRackAndPinionConstraintDataAtoms.cs │ │ │ ├── hkpRagdollConstraintData.cs │ │ │ ├── hkpRagdollConstraintDataAtoms.cs │ │ │ ├── hkpRagdollLimitsData.cs │ │ │ ├── hkpRagdollLimitsDataAtoms.cs │ │ │ ├── hkpRagdollMotorConstraintAtom.cs │ │ │ ├── hkpRayCollidableFilter.cs │ │ │ ├── hkpRayShapeCollectionFilter.cs │ │ │ ├── hkpRemoveTerminalsMoppModifier.cs │ │ │ ├── hkpReorientAction.cs │ │ │ ├── hkpRigidBody.cs │ │ │ ├── hkpRotationalConstraintData.cs │ │ │ ├── hkpRotationalConstraintDataAtoms.cs │ │ │ ├── hkpSerializedAgentNnEntry.cs │ │ │ ├── hkpSerializedDisplayMarker.cs │ │ │ ├── hkpSerializedDisplayMarkerList.cs │ │ │ ├── hkpSerializedDisplayRbTransforms.cs │ │ │ ├── hkpSerializedDisplayRbTransformsDisplayTransformPair.cs │ │ │ ├── hkpSerializedSubTrack1nInfo.cs │ │ │ ├── hkpSerializedTrack1nInfo.cs │ │ │ ├── hkpSetLocalRotationsConstraintAtom.cs │ │ │ ├── hkpSetLocalTransformsConstraintAtom.cs │ │ │ ├── hkpSetLocalTranslationsConstraintAtom.cs │ │ │ ├── hkpSetupStabilizationAtom.cs │ │ │ ├── hkpShape.cs │ │ │ ├── hkpShapeBase.cs │ │ │ ├── hkpShapeCollection.cs │ │ │ ├── hkpShapeCollectionFilter.cs │ │ │ ├── hkpShapeContainer.cs │ │ │ ├── hkpShapeInfo.cs │ │ │ ├── hkpShapeKeyTable.cs │ │ │ ├── hkpShapeKeyTableBlock.cs │ │ │ ├── hkpShapePhantom.cs │ │ │ ├── hkpSimpleBreakableMaterial.cs │ │ │ ├── hkpSimpleContactConstraintAtom.cs │ │ │ ├── hkpSimpleContactConstraintDataInfo.cs │ │ │ ├── hkpSimpleMeshShape.cs │ │ │ ├── hkpSimpleMeshShapeTriangle.cs │ │ │ ├── hkpSimpleShapePhantom.cs │ │ │ ├── hkpSingleShapeContainer.cs │ │ │ ├── hkpSoftContactModifierConstraintAtom.cs │ │ │ ├── hkpSphereMotion.cs │ │ │ ├── hkpSphereRepShape.cs │ │ │ ├── hkpSphereShape.cs │ │ │ ├── hkpSpringAction.cs │ │ │ ├── hkpSpringDamperConstraintMotor.cs │ │ │ ├── hkpStaticCompoundShape.cs │ │ │ ├── hkpStaticCompoundShapeBreakableMaterial.cs │ │ │ ├── hkpStaticCompoundShapeInstance.cs │ │ │ ├── hkpStiffSpringChainData.cs │ │ │ ├── hkpStiffSpringChainDataConstraintInfo.cs │ │ │ ├── hkpStiffSpringConstraintAtom.cs │ │ │ ├── hkpStiffSpringConstraintData.cs │ │ │ ├── hkpStiffSpringConstraintDataAtoms.cs │ │ │ ├── hkpStorageExtendedMeshShape.cs │ │ │ ├── hkpStorageExtendedMeshShapeMaterial.cs │ │ │ ├── hkpStorageExtendedMeshShapeMeshSubpartStorage.cs │ │ │ ├── hkpStorageExtendedMeshShapeShapeSubpartStorage.cs │ │ │ ├── hkpStorageMeshShape.cs │ │ │ ├── hkpStorageMeshShapeSubpartStorage.cs │ │ │ ├── hkpThinBoxMotion.cs │ │ │ ├── hkpTransformShape.cs │ │ │ ├── hkpTriangleShape.cs │ │ │ ├── hkpTriggerVolume.cs │ │ │ ├── hkpTriggerVolumeEventInfo.cs │ │ │ ├── hkpTwistLimitConstraintAtom.cs │ │ │ ├── hkpTypedBroadPhaseHandle.cs │ │ │ ├── hkpUnaryAction.cs │ │ │ ├── hkpVehicleFrictionDescription.cs │ │ │ ├── hkpVehicleFrictionDescriptionAxisDescription.cs │ │ │ ├── hkpVehicleFrictionStatus.cs │ │ │ ├── hkpVehicleFrictionStatusAxisStatus.cs │ │ │ ├── hkpVelocityConstraintMotor.cs │ │ │ ├── hkpViscousSurfaceModifierConstraintAtom.cs │ │ │ ├── hkpWeldingUtility.cs │ │ │ ├── hkpWheelConstraintData.cs │ │ │ ├── hkpWheelConstraintDataAtoms.cs │ │ │ ├── hkpWheelFrictionConstraintAtom.cs │ │ │ ├── hkpWheelFrictionConstraintAtomAxle.cs │ │ │ ├── hkpWheelFrictionConstraintData.cs │ │ │ ├── hkpWheelFrictionConstraintDataAtoms.cs │ │ │ ├── hkpWheelFrictionConstraintDataRuntime.cs │ │ │ ├── hkpWorldCinfo.cs │ │ │ ├── hkpWorldObject.cs │ │ │ ├── hkpWrappedConstraintData.cs │ │ │ ├── hkxAnimatedFloat.cs │ │ │ ├── hkxAnimatedMatrix.cs │ │ │ ├── hkxAnimatedQuaternion.cs │ │ │ ├── hkxAnimatedVector.cs │ │ │ ├── hkxAttribute.cs │ │ │ ├── hkxAttributeGroup.cs │ │ │ ├── hkxAttributeHolder.cs │ │ │ ├── hkxBlob.cs │ │ │ ├── hkxBlobMeshShape.cs │ │ │ ├── hkxCamera.cs │ │ │ ├── hkxEdgeSelectionChannel.cs │ │ │ ├── hkxEnum.cs │ │ │ ├── hkxEnumItem.cs │ │ │ ├── hkxEnvironment.cs │ │ │ ├── hkxEnvironmentVariable.cs │ │ │ ├── hkxIndexBuffer.cs │ │ │ ├── hkxLight.cs │ │ │ ├── hkxMaterial.cs │ │ │ ├── hkxMaterialEffect.cs │ │ │ ├── hkxMaterialProperty.cs │ │ │ ├── hkxMaterialShader.cs │ │ │ ├── hkxMaterialShaderSet.cs │ │ │ ├── hkxMaterialTextureStage.cs │ │ │ ├── hkxMesh.cs │ │ │ ├── hkxMeshSection.cs │ │ │ ├── hkxMeshUserChannelInfo.cs │ │ │ ├── hkxNode.cs │ │ │ ├── hkxNodeAnnotationData.cs │ │ │ ├── hkxNodeSelectionSet.cs │ │ │ ├── hkxScene.cs │ │ │ ├── hkxSkinBinding.cs │ │ │ ├── hkxSparselyAnimatedBool.cs │ │ │ ├── hkxSparselyAnimatedEnum.cs │ │ │ ├── hkxSparselyAnimatedInt.cs │ │ │ ├── hkxSparselyAnimatedString.cs │ │ │ ├── hkxSpline.cs │ │ │ ├── hkxSplineControlPoint.cs │ │ │ ├── hkxTextureFile.cs │ │ │ ├── hkxTextureInplace.cs │ │ │ ├── hkxTriangleSelectionChannel.cs │ │ │ ├── hkxVertexAnimation.cs │ │ │ ├── hkxVertexAnimationUsageMap.cs │ │ │ ├── hkxVertexBuffer.cs │ │ │ ├── hkxVertexBufferVertexData.cs │ │ │ ├── hkxVertexDescription.cs │ │ │ ├── hkxVertexDescriptionElementDecl.cs │ │ │ ├── hkxVertexFloatDataChannel.cs │ │ │ ├── hkxVertexIntDataChannel.cs │ │ │ ├── hkxVertexSelectionChannel.cs │ │ │ └── hkxVertexVectorDataChannel.cs │ │ ├── HKX2.csproj │ │ ├── IHavokObject.cs │ │ ├── Manual │ │ │ ├── hkRootLevelContainer.cs │ │ │ ├── hkcdStaticMeshTreeBaseSection.cs │ │ │ ├── hkcdStaticTreeCodec3Axis4.cs │ │ │ ├── hkcdStaticTreeCodec3Axis5.cs │ │ │ ├── hkcdStaticTreeCodec3Axis6.cs │ │ │ └── hknpCompressedMeshShapeData.cs │ │ ├── PackFileCommon.cs │ │ ├── PackFileDeserializer.cs │ │ └── PackFileSerializer.cs │ ├── NewBlendableTransform.cs │ ├── SIBCAM │ │ └── SIBCAM.cs │ └── TAE │ │ ├── TAE.Animation.cs │ │ ├── TAE.Event.cs │ │ ├── TAE.EventGroup.cs │ │ ├── TAE.Template.cs │ │ └── TAE.cs ├── AnimationExporting │ └── AnimationExporter.cs ├── AnimationImporting │ ├── AnimationImporter.cs │ └── ImportedAnimation.cs ├── AssimpUtilities.cs ├── BinaryReaderWriterExtensions.cs ├── BindUri.cs ├── FLVERImporting │ ├── FLVER2Importer.cs │ ├── FLVER2MaterialInfoBank.cs │ ├── FLVEREnums.cs │ ├── FLVERImportHelpers.cs │ └── TPFTextureFormatFinder.cs ├── SapDebugUtil.cs ├── SapEnums.cs ├── SapLogger.cs ├── SapMath.cs ├── SapResources │ ├── CompressAnim │ │ └── CompressAnim.exe │ └── FLVER2MaterialInfoBank │ │ ├── BankBB.xml │ │ ├── BankDS1.xml │ │ ├── BankDS1R.xml │ │ ├── BankDS2.xml │ │ ├── BankDS3.xml │ │ └── BankSDT.xml ├── SapUtils.cs ├── SoulsAssetPipeline.csproj └── XmlStructs │ ├── XmlStructDef.cs │ ├── XmlStructDefField.cs │ ├── XmlStructException.cs │ └── XmlStructExtensionMethods.cs └── SoulsFormatsNEXT ├── .gitattributes ├── .gitignore ├── FORMATS.md ├── LICENSE ├── README.md ├── SoulsFormats.sln └── SoulsFormats ├── Formats ├── ACB.cs ├── ANI.cs ├── AcParts │ └── AC4 │ │ ├── AcParts4.cs │ │ ├── Component │ │ ├── BoosterComponent.cs │ │ ├── DefenseComponent.cs │ │ ├── FrameComponent.cs │ │ ├── PAComponent.cs │ │ ├── PartComponent.cs │ │ ├── RadarComponent.cs │ │ ├── StabilizerComponent.cs │ │ ├── WeaponBoosterComponent.cs │ │ └── WeaponComponent.cs │ │ ├── Part │ │ ├── Arm.cs │ │ ├── ArmStabilizer.cs │ │ ├── ArmUnit.cs │ │ ├── BackBooster.cs │ │ ├── BackUnit.cs │ │ ├── Core.cs │ │ ├── CoreLowerSideStabilizer.cs │ │ ├── CoreUpperSideStabilizer.cs │ │ ├── FCS.cs │ │ ├── Generator.cs │ │ ├── Head.cs │ │ ├── HeadSideStabilizer.cs │ │ ├── HeadTopStabilizer.cs │ │ ├── IBooster.cs │ │ ├── IFrame.cs │ │ ├── IPart.cs │ │ ├── IStabilizer.cs │ │ ├── IWeapon.cs │ │ ├── Leg.cs │ │ ├── LegBackStabilizer.cs │ │ ├── LegLowerStabilizer.cs │ │ ├── LegMiddleStabilizer.cs │ │ ├── LegUpperStabilizer.cs │ │ ├── MainBooster.cs │ │ ├── OveredBooster.cs │ │ ├── ShoulderUnit.cs │ │ └── SideBooster.cs │ │ └── Types │ │ └── DispType.cs ├── BHD5.cs ├── BTAB.cs ├── BTL.cs ├── BTPB.cs ├── Binder │ ├── BND │ │ └── BND.cs │ ├── BND2 │ │ ├── BND2.cs │ │ ├── BND2FileHeader.cs │ │ ├── BND2Reader.cs │ │ └── IBND2.cs │ ├── BND3 │ │ ├── BND3.cs │ │ ├── BND3Reader.cs │ │ └── IBND3.cs │ ├── BND4 │ │ ├── BND4.cs │ │ ├── BND4Reader.cs │ │ └── IBND4.cs │ ├── BXF3 │ │ ├── BXF3.cs │ │ ├── BXF3Reader.cs │ │ └── IBXF3.cs │ ├── BXF4 │ │ ├── BXF4.cs │ │ ├── BXF4Reader.cs │ │ └── IBXF4.cs │ ├── Binder.cs │ ├── BinderFile.cs │ ├── BinderFileHeader.cs │ ├── BinderHashTable.cs │ ├── BinderReader.cs │ └── IBinder.cs ├── CCM.cs ├── CLM2.cs ├── DCX.cs ├── DRB │ ├── Anik.cs │ ├── Anim.cs │ ├── Anio.cs │ ├── Control.cs │ ├── DRB.cs │ ├── Dlg.cs │ ├── Dlgo.cs │ ├── Scdk.cs │ ├── Scdl.cs │ ├── Scdo.cs │ ├── Shape.cs │ └── Texture.cs ├── EDD.cs ├── EDGE.cs ├── EMELD.cs ├── EMEVD │ ├── EMEVD.cs │ ├── Event.cs │ ├── Instruction.cs │ ├── Layer.cs │ └── Parameter.cs ├── ENFL.cs ├── ESD.cs ├── F2TR.cs ├── FFXDLSE │ ├── Action.cs │ ├── Evaluatable.cs │ ├── FFXDLSE.cs │ ├── FXEffect.cs │ ├── Param.cs │ ├── ParamList.cs │ ├── Primitive.cs │ ├── ResourceSet.cs │ ├── State.cs │ ├── StateMap.cs │ └── Trigger.cs ├── FLVER │ ├── Dummy.cs │ ├── FLVER0 │ │ ├── BufferLayout.cs │ │ ├── FLVER0.cs │ │ ├── Material.cs │ │ ├── Mesh.cs │ │ ├── Texture.cs │ │ └── VertexBuffer.cs │ ├── FLVER2 │ │ ├── BufferLayout.cs │ │ ├── EdgeGeomSpuConfigInfo.cs │ │ ├── EdgeIndexBuffer.cs │ │ ├── EdgeIndexGroup.cs │ │ ├── EdgeVertexBuffer.cs │ │ ├── FLVER2.cs │ │ ├── FaceSet.cs │ │ ├── GXList.cs │ │ ├── Material.cs │ │ ├── Mesh.cs │ │ ├── SkeletonSet.cs │ │ ├── Texture.cs │ │ └── VertexBuffer.cs │ ├── IFlver.cs │ ├── LayoutMember.cs │ ├── Node.cs │ ├── Vertex.cs │ ├── VertexBoneIndices.cs │ ├── VertexBoneWeights.cs │ └── VertexColor.cs ├── FMB.cs ├── FMG.cs ├── FSDATA.cs ├── FSLIBLZS.cs ├── FXR3.cs ├── GPARAM.cs ├── GRASS.cs ├── LUAGNL.cs ├── LUAINFO.cs ├── MATBIN.cs ├── MCG.cs ├── MCP.cs ├── MLB │ ├── IMLB.cs │ ├── IMlbResource.cs │ ├── MLB_AC4.cs │ └── MLB_AC5.cs ├── MQB │ ├── CustomData.cs │ ├── Cut.cs │ ├── Disposition.cs │ ├── MQB.cs │ ├── Resource.cs │ ├── Timeline.cs │ └── Transform.cs ├── MSB │ ├── FormatReference.cs │ ├── IMsb.cs │ ├── MSB.cs │ ├── MSB1 │ │ ├── EventParam.cs │ │ ├── MSB1.cs │ │ ├── ModelParam.cs │ │ ├── PartsParam.cs │ │ └── PointParam.cs │ ├── MSB2 │ │ ├── EventParam.cs │ │ ├── LayerParam.cs │ │ ├── MSB2.cs │ │ ├── MapstudioBoneName.cs │ │ ├── MapstudioPartsPose.cs │ │ ├── ModelParam.cs │ │ ├── PartsParam.cs │ │ ├── PointParam.cs │ │ └── RouteParam.cs │ ├── MSB3 │ │ ├── EventParam.cs │ │ ├── LayerParam.cs │ │ ├── MSB3.cs │ │ ├── MapstudioBoneName.cs │ │ ├── MapstudioPartsPose.cs │ │ ├── ModelParam.cs │ │ ├── PartsParam.cs │ │ ├── PointParam.cs │ │ └── RouteParam.cs │ ├── MSBAC4 │ │ ├── EventParam.cs │ │ ├── LayerParam.cs │ │ ├── MSBAC4.cs │ │ ├── MapStudioTreeParam.cs │ │ ├── ModelParam.cs │ │ ├── PartsParam.cs │ │ ├── PointParam.cs │ │ └── RouteParam.cs │ ├── MSBB │ │ ├── EventParam.cs │ │ ├── MSBB.cs │ │ ├── ModelParam.cs │ │ ├── PartsParam.cs │ │ └── PointParam.cs │ ├── MSBD │ │ ├── EventParam.cs │ │ ├── MSBD.cs │ │ ├── MapstudioTree.cs │ │ ├── ModelParam.cs │ │ ├── PartsParam.cs │ │ └── PointParam.cs │ ├── MSBDR │ │ ├── EventParam.cs │ │ ├── MSBDR.cs │ │ ├── MapstudioTree.cs │ │ ├── ModelParam.cs │ │ ├── PartsParam.cs │ │ └── PointParam.cs │ ├── MSBE │ │ ├── EventParam.cs │ │ ├── MSBE.cs │ │ ├── ModelParam.cs │ │ ├── PartsParam.cs │ │ ├── PointParam.cs │ │ └── RouteParam.cs │ ├── MSBFA │ │ ├── EventParam.cs │ │ ├── LayerParam.cs │ │ ├── MSBFA.cs │ │ ├── MapStudioTreeParam.cs │ │ ├── ModelParam.cs │ │ ├── PartsParam.cs │ │ ├── PointParam.cs │ │ └── RouteParam.cs │ ├── MSBN │ │ ├── MSBN.ModelSection.cs │ │ ├── MSBN.PartsSection.cs │ │ └── MSBN.cs │ ├── MSBReference.cs │ ├── MSBS │ │ ├── EventParam.cs │ │ ├── MSBS.cs │ │ ├── ModelParam.cs │ │ ├── PartsParam.cs │ │ ├── PointParam.cs │ │ └── RouteParam.cs │ ├── MSBV │ │ ├── EventParam.cs │ │ ├── LayerParam.cs │ │ ├── MSBV.cs │ │ ├── MapStudioTreeParam.cs │ │ ├── ModelParam.cs │ │ ├── PartsParam.cs │ │ ├── PointParam.cs │ │ └── RouteParam.cs │ ├── MSBVD │ │ ├── EventParam.cs │ │ ├── LayerParam.cs │ │ ├── MSBVD.cs │ │ ├── MapStudioTreeParam.cs │ │ ├── ModelParam.cs │ │ ├── PartsParam.cs │ │ ├── PointParam.cs │ │ └── RouteParam.cs │ ├── MSBVI │ │ ├── EventParam.cs │ │ ├── LayerParam.cs │ │ ├── MSBVI.cs │ │ ├── ModelParam.cs │ │ ├── PartsParam.cs │ │ ├── PointParam.cs │ │ └── RouteParam.cs │ ├── MsbBoundingBox.cs │ └── Shape.cs ├── MTD.cs ├── Morpheme │ ├── MorphemeBundle │ │ ├── AnimToRigTableMap.cs │ │ ├── Event.cs │ │ ├── EventTrack.cs │ │ ├── FileNameLookupTable.cs │ │ ├── LookupTable.cs │ │ ├── MorphemeBundleEnums.cs │ │ ├── MorphemeBundleGUID.cs │ │ ├── MorphemeBundleGeneric.cs │ │ ├── MorphemeBundle_Base.cs │ │ ├── MorphemeFileHeader.cs │ │ ├── MorphemeSizeAlignFormatting.cs │ │ ├── Network │ │ │ ├── MessageDef.cs │ │ │ ├── MorphemeNodeDef.cs │ │ │ ├── NodeAttrib │ │ │ │ ├── NodeAttribBase.cs │ │ │ │ ├── NodeAttribBool.cs │ │ │ │ ├── NodeAttribSourceAnim.cs │ │ │ │ ├── NodeAttribSourceEventTrack.cs │ │ │ │ └── NodeAttribUnknown.cs │ │ │ ├── NodeDataSet.cs │ │ │ ├── NodeDef.cs │ │ │ └── SmStateList.cs │ │ ├── NetworkBundle.cs │ │ ├── Rig.cs │ │ ├── RigToAnimEntryMap.cs │ │ └── RigToAnimMap.cs │ ├── NMB.cs │ └── NSA │ │ ├── DequantizationFactor.cs │ │ ├── DequantizationInfo.cs │ │ ├── DynamicSegment.cs │ │ ├── NSA.cs │ │ ├── NSAHeader.cs │ │ ├── NSAVec3.cs │ │ ├── RootMotionSegment.cs │ │ ├── RotationData.cs │ │ ├── StaticSegment.cs │ │ └── TranslationData.cs ├── NGP.cs ├── NVA.cs ├── NVM.cs ├── Other │ ├── AC3SL │ │ └── BND.cs │ ├── AC4 │ │ ├── ANC.cs │ │ ├── AcAttachInfo.cs │ │ ├── AcColorSet4.cs │ │ ├── AcConflictInfo.cs │ │ ├── AcPartCategory.cs │ │ └── DBSUB.cs │ ├── ACE3 │ │ └── BND.cs │ ├── Dreamcast │ │ └── MGF.cs │ ├── KF4 │ │ ├── CHR.cs │ │ ├── DAT.cs │ │ ├── MAP.cs │ │ └── OM2.cs │ ├── Kuon │ │ ├── BND.cs │ │ └── DVDBND.cs │ ├── LDMU.cs │ ├── MDL.cs │ ├── MDL0.cs │ ├── MDL4 │ │ ├── Dummy.cs │ │ ├── MDL4.cs │ │ ├── Material.cs │ │ ├── Mesh.cs │ │ ├── Node.cs │ │ ├── Vertex.cs │ │ ├── VertexBoneIndices.cs │ │ ├── VertexBoneWeights.cs │ │ └── VertexColor.cs │ ├── MDLEnum.cs │ ├── MWC │ │ ├── DEV.cs │ │ ├── MDAT.cs │ │ ├── MMD.cs │ │ ├── OTR.cs │ │ ├── SMD.cs │ │ └── TDAT.cs │ ├── Murakumo │ │ └── DDL.cs │ ├── Otogi2 │ │ └── DAT.cs │ ├── SOM │ │ └── MDO.cs │ └── Zero3.cs ├── PARAM │ ├── Deprecated │ │ ├── Enum.cs │ │ └── Layout.cs │ ├── PARAM │ │ ├── Cell.cs │ │ ├── PARAM.cs │ │ └── Row.cs │ ├── PARAMDBP │ │ ├── DBPPARAM.cs │ │ ├── PARAMDBP.cs │ │ ├── TxtSerializer.cs │ │ └── XmlSerializer.cs │ ├── PARAMDEF │ │ ├── Field.cs │ │ ├── PARAMDEF.cs │ │ └── XmlSerializer.cs │ ├── PARAMTDF.cs │ ├── ParamDbpUtil.cs │ └── ParamUtil.cs ├── PMDCL.cs ├── RMB.cs ├── SMD4 │ ├── Mesh.cs │ ├── Node.cs │ ├── SMD4.cs │ ├── Unk10.cs │ ├── Vertex.cs │ ├── VertexBoneIndices.cs │ └── VertexBoneWeights.cs ├── TAE3 │ ├── TAE3.Event.cs │ └── TAE3.cs └── TPF │ ├── DDS.cs │ ├── Headerizer.cs │ ├── SecretHeaderizer.cs │ └── TPF.cs ├── SoulsFormats.csproj └── Utilities ├── Attributes ├── HideProperty.cs ├── NoRenderGroupInheritance.cs ├── RotationRadians.cs ├── RotationXZY.cs └── SupportsAlphaAttribute.cs ├── BitConverterHelper.cs ├── Collections └── ListExtensions.cs ├── Compression ├── Oodle │ ├── IOodleCompressor.cs │ ├── Oodle.cs │ ├── Oodle26.cs │ ├── Oodle28.cs │ └── Oodle29.cs ├── ZlibHelper.cs └── ZstdHelper.cs ├── Cryptography ├── HashHelper.cs ├── RegulationDecryptor.cs └── SL2Decryptor.cs ├── EdgeGeom.cs ├── EndianHelper.cs ├── Exceptions └── NoOodleException.cs ├── Formats ├── ISoulsFile.cs └── SoulsFile.cs ├── Guessing └── ExtensionGuesser.cs ├── HexHelper.cs ├── IO ├── BinaryReaderEx.cs ├── BinaryWriterEx.cs └── PathHelper.cs ├── Kernel32.cs ├── MathHelper.cs ├── SFUtil.cs ├── Text └── SFEncoding.cs └── Xml ├── XmlNodeExtensions.cs └── XmlWriterExtensions.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/.gitignore -------------------------------------------------------------------------------- /FLVER_Editor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor.sln -------------------------------------------------------------------------------- /FLVER_Editor/ActionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/ActionManager.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/AddNewDummyAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/AddNewDummyAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/ApplyMeshSimpleSkinAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/ApplyMeshSimpleSkinAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/BonesTableCellValueUpdatedAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/BonesTableCellValueUpdatedAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/CenterMeshToWorldAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/CenterMeshToWorldAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/DeleteConnectedVerticesAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/DeleteConnectedVerticesAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/DeleteSelectedMeshAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/DeleteSelectedMeshAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/DeleteVertexAboveAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/DeleteVertexAboveAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/DeleteVertexAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/DeleteVertexAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/DeleteVertexBelowAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/DeleteVertexBelowAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/DummyTableDataChangedAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/DummyTableDataChangedAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/DuplicateDummyAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/DuplicateDummyAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/DuplicateMeshAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/DuplicateMeshAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/FlipYZAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/FlipYZAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/Helpers/VertexDeleteHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/Helpers/VertexDeleteHelper.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/ImportGhostModelAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/ImportGhostModelAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/ImportMeshesToFlverAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/ImportMeshesToFlverAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/LoadDummyProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/LoadDummyProfile.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/LoadJsonAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/LoadJsonAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/MaterialsTableOkAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/MaterialsTableOkAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/MergeFlversAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/MergeFlversAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/MeshTableCellValueChangedAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/MeshTableCellValueChangedAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/MeshTansformAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/MeshTansformAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/MirrorMeshAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/MirrorMeshAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/ResetAllMeshesAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/ResetAllMeshesAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/ReverseFaceSetsAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/ReverseFaceSetsAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/ReverseNormalsAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/ReverseNormalsAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/SetAllBBsMaxSizeAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/SetAllBBsMaxSizeAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/SolveAllBBsAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/SolveAllBBsAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/SolveAllMeshLODsAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/SolveAllMeshLODsAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/TexturesTableCellUpdateAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/TexturesTableCellUpdateAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/ToggleBackFacesAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/ToggleBackFacesAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/UpdateTextureAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/UpdateTextureAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/Actions/UpdateVertexPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Actions/UpdateVertexPosition.cs -------------------------------------------------------------------------------- /FLVER_Editor/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/App.config -------------------------------------------------------------------------------- /FLVER_Editor/AssimpNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/AssimpNet.dll -------------------------------------------------------------------------------- /FLVER_Editor/BNDFWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/BNDFWrapper.cs -------------------------------------------------------------------------------- /FLVER_Editor/BasicLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/BasicLogger.cs -------------------------------------------------------------------------------- /FLVER_Editor/Content/Segoe UI.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Content/Segoe UI.xnb -------------------------------------------------------------------------------- /FLVER_Editor/DropdownControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/DropdownControl.cs -------------------------------------------------------------------------------- /FLVER_Editor/EasyCompletionComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/EasyCompletionComboBox.cs -------------------------------------------------------------------------------- /FLVER_Editor/EliteKnight.flver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/EliteKnight.flver -------------------------------------------------------------------------------- /FLVER_Editor/EliteKnight.flver.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/EliteKnight.flver.bak -------------------------------------------------------------------------------- /FLVER_Editor/EliteKnight.tpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/EliteKnight.tpf -------------------------------------------------------------------------------- /FLVER_Editor/Exporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Exporter.cs -------------------------------------------------------------------------------- /FLVER_Editor/FLVERConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/FLVERConverter.cs -------------------------------------------------------------------------------- /FLVER_Editor/FLVER_Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/FLVER_Editor.csproj -------------------------------------------------------------------------------- /FLVER_Editor/FbxDataExtractor.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/FbxDataExtractor.deps.json -------------------------------------------------------------------------------- /FLVER_Editor/FbxDataExtractor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/FbxDataExtractor.dll -------------------------------------------------------------------------------- /FLVER_Editor/FbxDataExtractor.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/FbxDataExtractor.runtimeconfig.json -------------------------------------------------------------------------------- /FLVER_Editor/FileDlgExtenders.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/FileDlgExtenders.dll -------------------------------------------------------------------------------- /FLVER_Editor/FlverFixer/Util/FlverUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/FlverFixer/Util/FlverUtils.cs -------------------------------------------------------------------------------- /FLVER_Editor/Forms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Forms.cs -------------------------------------------------------------------------------- /FLVER_Editor/Generators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Generators.cs -------------------------------------------------------------------------------- /FLVER_Editor/Havoc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Havoc.dll -------------------------------------------------------------------------------- /FLVER_Editor/Ijwhost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Ijwhost.dll -------------------------------------------------------------------------------- /FLVER_Editor/Importer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Importer.cs -------------------------------------------------------------------------------- /FLVER_Editor/ImporterOpenFileDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/ImporterOpenFileDialog.Designer.cs -------------------------------------------------------------------------------- /FLVER_Editor/ImporterOpenFileDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/ImporterOpenFileDialog.cs -------------------------------------------------------------------------------- /FLVER_Editor/ImporterOpenFileDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/ImporterOpenFileDialog.resx -------------------------------------------------------------------------------- /FLVER_Editor/IniParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/IniParser.cs -------------------------------------------------------------------------------- /FLVER_Editor/MATBIN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/MATBIN.cs -------------------------------------------------------------------------------- /FLVER_Editor/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/MainForm.Designer.cs -------------------------------------------------------------------------------- /FLVER_Editor/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/MainForm.cs -------------------------------------------------------------------------------- /FLVER_Editor/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/MainForm.resx -------------------------------------------------------------------------------- /FLVER_Editor/Matrix4x4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Matrix4x4.cs -------------------------------------------------------------------------------- /FLVER_Editor/Mono3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Mono3D.cs -------------------------------------------------------------------------------- /FLVER_Editor/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/ObjectExtensions.cs -------------------------------------------------------------------------------- /FLVER_Editor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Program.cs -------------------------------------------------------------------------------- /FLVER_Editor/ProgramUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/ProgramUtils.cs -------------------------------------------------------------------------------- /FLVER_Editor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /FLVER_Editor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Properties/Resources.resx -------------------------------------------------------------------------------- /FLVER_Editor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /FLVER_Editor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Properties/Settings.settings -------------------------------------------------------------------------------- /FLVER_Editor/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Properties/launchSettings.json -------------------------------------------------------------------------------- /FLVER_Editor/Resources/bone/boneConversion.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Resources/bone/boneConversion.ini -------------------------------------------------------------------------------- /FLVER_Editor/Resources/dummy/dummyInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Resources/dummy/dummyInfo.json -------------------------------------------------------------------------------- /FLVER_Editor/Resources/dummy/dummypresets.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /FLVER_Editor/Resources/example/EliteKnight.flver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Resources/example/EliteKnight.flver -------------------------------------------------------------------------------- /FLVER_Editor/Resources/example/EliteKnight.flver.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Resources/example/EliteKnight.flver.bak -------------------------------------------------------------------------------- /FLVER_Editor/Resources/example/EliteKnight.tpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Resources/example/EliteKnight.tpf -------------------------------------------------------------------------------- /FLVER_Editor/Resources/icon/ICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Resources/icon/ICON.png -------------------------------------------------------------------------------- /FLVER_Editor/Resources/icon/display_female_body_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Resources/icon/display_female_body_icon.png -------------------------------------------------------------------------------- /FLVER_Editor/Resources/icon/display_female_body_icon_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Resources/icon/display_female_body_icon_purple.png -------------------------------------------------------------------------------- /FLVER_Editor/Resources/icon/display_male_body_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Resources/icon/display_male_body_icon.png -------------------------------------------------------------------------------- /FLVER_Editor/Resources/icon/hide_all_mesh_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Resources/icon/hide_all_mesh_icon.png -------------------------------------------------------------------------------- /FLVER_Editor/Resources/icon/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Resources/icon/icon.ico -------------------------------------------------------------------------------- /FLVER_Editor/Resources/icon/reset_mesh_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Resources/icon/reset_mesh_icon.png -------------------------------------------------------------------------------- /FLVER_Editor/Resources/icon/select_all_dummies_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Resources/icon/select_all_dummies_icon.png -------------------------------------------------------------------------------- /FLVER_Editor/Resources/icon/select_all_mesh_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Resources/icon/select_all_mesh_icon.png -------------------------------------------------------------------------------- /FLVER_Editor/Resources/icon/solve_all_bbs_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Resources/icon/solve_all_bbs_icon.png -------------------------------------------------------------------------------- /FLVER_Editor/Resources/icon/solve_all_bbs_max_size_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Resources/icon/solve_all_bbs_max_size_icon.png -------------------------------------------------------------------------------- /FLVER_Editor/Resources/icon/solve_all_mesh_lods_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Resources/icon/solve_all_mesh_lods_icon.png -------------------------------------------------------------------------------- /FLVER_Editor/Resources/image/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Resources/image/bg.png -------------------------------------------------------------------------------- /FLVER_Editor/Resources/image/singleColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Resources/image/singleColor.png -------------------------------------------------------------------------------- /FLVER_Editor/Resources/material/materialpresets.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /FLVER_Editor/Resources/model/body.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Resources/model/body.mtl -------------------------------------------------------------------------------- /FLVER_Editor/Resources/model/boxobj.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Resources/model/boxobj.mtl -------------------------------------------------------------------------------- /FLVER_Editor/Resources/model/femalebody.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Resources/model/femalebody.fbx -------------------------------------------------------------------------------- /FLVER_Editor/Resources/model/femalebody.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Resources/model/femalebody.mtl -------------------------------------------------------------------------------- /FLVER_Editor/Resources/model/malebody.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Resources/model/malebody.fbx -------------------------------------------------------------------------------- /FLVER_Editor/SapFlverScan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/SapFlverScan.cs -------------------------------------------------------------------------------- /FLVER_Editor/SapResources/CompressAnim/CompressAnim.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/SapResources/CompressAnim/CompressAnim.exe -------------------------------------------------------------------------------- /FLVER_Editor/SapResources/FLVER2MaterialInfoBank/BankAC6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/SapResources/FLVER2MaterialInfoBank/BankAC6.xml -------------------------------------------------------------------------------- /FLVER_Editor/SapResources/FLVER2MaterialInfoBank/BankBB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/SapResources/FLVER2MaterialInfoBank/BankBB.xml -------------------------------------------------------------------------------- /FLVER_Editor/SapResources/FLVER2MaterialInfoBank/BankDS1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/SapResources/FLVER2MaterialInfoBank/BankDS1.xml -------------------------------------------------------------------------------- /FLVER_Editor/SapResources/FLVER2MaterialInfoBank/BankDS1R.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/SapResources/FLVER2MaterialInfoBank/BankDS1R.xml -------------------------------------------------------------------------------- /FLVER_Editor/SapResources/FLVER2MaterialInfoBank/BankDS2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/SapResources/FLVER2MaterialInfoBank/BankDS2.xml -------------------------------------------------------------------------------- /FLVER_Editor/SapResources/FLVER2MaterialInfoBank/BankDS3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/SapResources/FLVER2MaterialInfoBank/BankDS3.xml -------------------------------------------------------------------------------- /FLVER_Editor/SapResources/FLVER2MaterialInfoBank/BankER.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/SapResources/FLVER2MaterialInfoBank/BankER.xml -------------------------------------------------------------------------------- /FLVER_Editor/SapResources/FLVER2MaterialInfoBank/BankNR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/SapResources/FLVER2MaterialInfoBank/BankNR.xml -------------------------------------------------------------------------------- /FLVER_Editor/SapResources/FLVER2MaterialInfoBank/BankSDT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/SapResources/FLVER2MaterialInfoBank/BankSDT.xml -------------------------------------------------------------------------------- /FLVER_Editor/StringMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/StringMatcher.cs -------------------------------------------------------------------------------- /FLVER_Editor/TeximpNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/TeximpNet.dll -------------------------------------------------------------------------------- /FLVER_Editor/Transform3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Transform3D.cs -------------------------------------------------------------------------------- /FLVER_Editor/Transform3DOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Transform3DOperations.cs -------------------------------------------------------------------------------- /FLVER_Editor/TransformAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/TransformAction.cs -------------------------------------------------------------------------------- /FLVER_Editor/UVsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/UVsPanel.cs -------------------------------------------------------------------------------- /FLVER_Editor/UpgradeReport.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/UpgradeReport.sarif -------------------------------------------------------------------------------- /FLVER_Editor/Util3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Util3D.cs -------------------------------------------------------------------------------- /FLVER_Editor/VecUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/VecUtils.cs -------------------------------------------------------------------------------- /FLVER_Editor/Vector2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Vector2D.cs -------------------------------------------------------------------------------- /FLVER_Editor/Vector3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Vector3D.cs -------------------------------------------------------------------------------- /FLVER_Editor/Vector4D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/Vector4D.cs -------------------------------------------------------------------------------- /FLVER_Editor/WinFormsApp1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/WinFormsApp1.csproj -------------------------------------------------------------------------------- /FLVER_Editor/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/app.manifest -------------------------------------------------------------------------------- /FLVER_Editor/body.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/body.mtl -------------------------------------------------------------------------------- /FLVER_Editor/femalebody.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/femalebody.mtl -------------------------------------------------------------------------------- /FLVER_Editor/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/icon.ico -------------------------------------------------------------------------------- /FLVER_Editor/lib/MonogameWindows/Lidgren.Network.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/lib/MonogameWindows/Lidgren.Network.dll -------------------------------------------------------------------------------- /FLVER_Editor/lib/MonogameWindows/Lidgren.Network.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/lib/MonogameWindows/Lidgren.Network.xml -------------------------------------------------------------------------------- /FLVER_Editor/lib/MonogameWindows/MonoGame.Framework.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/lib/MonogameWindows/MonoGame.Framework.Net.dll -------------------------------------------------------------------------------- /FLVER_Editor/lib/MonogameWindows/MonoGame.Framework.Net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/lib/MonogameWindows/MonoGame.Framework.Net.xml -------------------------------------------------------------------------------- /FLVER_Editor/lib/MonogameWindows/MonoGame.Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/lib/MonogameWindows/MonoGame.Framework.dll -------------------------------------------------------------------------------- /FLVER_Editor/lib/MonogameWindows/MonoGame.Framework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/lib/MonogameWindows/MonoGame.Framework.xml -------------------------------------------------------------------------------- /FLVER_Editor/lib/MonogameWindows/SharpDX.DXGI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/lib/MonogameWindows/SharpDX.DXGI.dll -------------------------------------------------------------------------------- /FLVER_Editor/lib/MonogameWindows/SharpDX.DXGI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/lib/MonogameWindows/SharpDX.DXGI.xml -------------------------------------------------------------------------------- /FLVER_Editor/lib/MonogameWindows/SharpDX.Direct2D1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/lib/MonogameWindows/SharpDX.Direct2D1.dll -------------------------------------------------------------------------------- /FLVER_Editor/lib/MonogameWindows/SharpDX.Direct2D1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/lib/MonogameWindows/SharpDX.Direct2D1.xml -------------------------------------------------------------------------------- /FLVER_Editor/lib/MonogameWindows/SharpDX.Direct3D11.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/lib/MonogameWindows/SharpDX.Direct3D11.dll -------------------------------------------------------------------------------- /FLVER_Editor/lib/MonogameWindows/SharpDX.Direct3D11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/lib/MonogameWindows/SharpDX.Direct3D11.xml -------------------------------------------------------------------------------- /FLVER_Editor/lib/MonogameWindows/SharpDX.Direct3D9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/lib/MonogameWindows/SharpDX.Direct3D9.dll -------------------------------------------------------------------------------- /FLVER_Editor/lib/MonogameWindows/SharpDX.Direct3D9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/lib/MonogameWindows/SharpDX.Direct3D9.xml -------------------------------------------------------------------------------- /FLVER_Editor/lib/MonogameWindows/SharpDX.MediaFoundation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/lib/MonogameWindows/SharpDX.MediaFoundation.dll -------------------------------------------------------------------------------- /FLVER_Editor/lib/MonogameWindows/SharpDX.MediaFoundation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/lib/MonogameWindows/SharpDX.MediaFoundation.xml -------------------------------------------------------------------------------- /FLVER_Editor/lib/MonogameWindows/SharpDX.RawInput.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/lib/MonogameWindows/SharpDX.RawInput.dll -------------------------------------------------------------------------------- /FLVER_Editor/lib/MonogameWindows/SharpDX.RawInput.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/lib/MonogameWindows/SharpDX.RawInput.xml -------------------------------------------------------------------------------- /FLVER_Editor/lib/MonogameWindows/SharpDX.XAudio2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/lib/MonogameWindows/SharpDX.XAudio2.dll -------------------------------------------------------------------------------- /FLVER_Editor/lib/MonogameWindows/SharpDX.XAudio2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/lib/MonogameWindows/SharpDX.XAudio2.xml -------------------------------------------------------------------------------- /FLVER_Editor/lib/MonogameWindows/SharpDX.XInput.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/lib/MonogameWindows/SharpDX.XInput.dll -------------------------------------------------------------------------------- /FLVER_Editor/lib/MonogameWindows/SharpDX.XInput.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/lib/MonogameWindows/SharpDX.XInput.xml -------------------------------------------------------------------------------- /FLVER_Editor/lib/MonogameWindows/SharpDX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/lib/MonogameWindows/SharpDX.dll -------------------------------------------------------------------------------- /FLVER_Editor/lib/MonogameWindows/SharpDX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/lib/MonogameWindows/SharpDX.xml -------------------------------------------------------------------------------- /FLVER_Editor/lib/ObjLoader/CjClutter.ObjLoader.Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/lib/ObjLoader/CjClutter.ObjLoader.Loader.dll -------------------------------------------------------------------------------- /FLVER_Editor/lib/Yuuki/assimp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/lib/Yuuki/assimp.lib -------------------------------------------------------------------------------- /FLVER_Editor/libfbxsdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/libfbxsdk.dll -------------------------------------------------------------------------------- /FLVER_Editor/oo2core_6_win64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/oo2core_6_win64.dll -------------------------------------------------------------------------------- /FLVER_Editor/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/settings.ini -------------------------------------------------------------------------------- /FLVER_Editor/updates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/updates.txt -------------------------------------------------------------------------------- /FLVER_Editor/upgrade-assistant.clef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FLVER_Editor/upgrade-assistant.clef -------------------------------------------------------------------------------- /FbxImporter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/.gitignore -------------------------------------------------------------------------------- /FbxImporter/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/.gitmodules -------------------------------------------------------------------------------- /FbxImporter/FbxDataExtractor/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxDataExtractor/AssemblyInfo.cpp -------------------------------------------------------------------------------- /FbxImporter/FbxDataExtractor/FbxDataExtractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxDataExtractor/FbxDataExtractor.cpp -------------------------------------------------------------------------------- /FbxImporter/FbxDataExtractor/FbxDataExtractor.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxDataExtractor/FbxDataExtractor.vcxproj -------------------------------------------------------------------------------- /FbxImporter/FbxDataExtractor/FbxDataExtractor.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxDataExtractor/FbxDataExtractor.vcxproj.filters -------------------------------------------------------------------------------- /FbxImporter/FbxDataExtractor/FbxMeshData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxDataExtractor/FbxMeshData.cpp -------------------------------------------------------------------------------- /FbxImporter/FbxDataExtractor/FbxMeshData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxDataExtractor/FbxMeshData.h -------------------------------------------------------------------------------- /FbxImporter/FbxDataExtractor/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxDataExtractor/Resource.h -------------------------------------------------------------------------------- /FbxImporter/FbxDataExtractor/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxDataExtractor/Util.h -------------------------------------------------------------------------------- /FbxImporter/FbxDataExtractor/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxDataExtractor/app.ico -------------------------------------------------------------------------------- /FbxImporter/FbxDataExtractor/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxDataExtractor/app.rc -------------------------------------------------------------------------------- /FbxImporter/FbxDataExtractor/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxDataExtractor/pch.cpp -------------------------------------------------------------------------------- /FbxImporter/FbxDataExtractor/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxDataExtractor/pch.h -------------------------------------------------------------------------------- /FbxImporter/FbxImporter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter.sln -------------------------------------------------------------------------------- /FbxImporter/FbxImporter.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter.sln.DotSettings -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/.gitignore -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/App.axaml -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/App.axaml.cs -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/Assets/avalonia-logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/Assets/avalonia-logo.ico -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/FbxImporter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/FbxImporter.csproj -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/FodyWeavers.xml -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/Logger.cs -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/Program.cs -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/Properties/launchSettings.json -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/Util/FlverUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/Util/FlverUtils.cs -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/ViewLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/ViewLocator.cs -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/ViewModels/FbxMeshDataViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/ViewModels/FbxMeshDataViewModel.cs -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/ViewModels/FbxSceneDataViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/ViewModels/FbxSceneDataViewModel.cs -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/ViewModels/FlverMeshViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/ViewModels/FlverMeshViewModel.cs -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/ViewModels/FlverViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/ViewModels/FlverViewModel.cs -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/ViewModels/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/ViewModels/MainWindowViewModel.cs -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/ViewModels/MeshImportOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/ViewModels/MeshImportOptions.cs -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/ViewModels/ProgressViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/ViewModels/ProgressViewModel.cs -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/Views/FbxSceneDataView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/Views/FbxSceneDataView.axaml -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/Views/FbxSceneDataView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/Views/FbxSceneDataView.axaml.cs -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/Views/FlverView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/Views/FlverView.axaml -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/Views/FlverView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/Views/FlverView.axaml.cs -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/Views/MainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/Views/MainWindow.axaml -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/Views/MainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/Views/MainWindow.axaml.cs -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/Views/MeshImportOptionsView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/Views/MeshImportOptionsView.axaml -------------------------------------------------------------------------------- /FbxImporter/FbxImporter/Views/MeshImportOptionsView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/FbxImporter/Views/MeshImportOptionsView.axaml.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/Animation/HKX/Animation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/Animation/HKX/Animation.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/Animation/HKX/HKX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/Animation/HKX/HKX.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/Animation/HKX/RootMotionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/Animation/HKX/RootMotionData.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/Animation/HKX2/Autogen/hkAabb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/Animation/HKX2/Autogen/hkAabb.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/Animation/HKX2/Autogen/hkUuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/Animation/HKX2/Autogen/hkUuid.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/Animation/HKX2/HKX2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/Animation/HKX2/HKX2.csproj -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/Animation/HKX2/IHavokObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/Animation/HKX2/IHavokObject.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/Animation/HKX2/PackFileCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/Animation/HKX2/PackFileCommon.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/Animation/SIBCAM/SIBCAM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/Animation/SIBCAM/SIBCAM.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/Animation/TAE/TAE.Animation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/Animation/TAE/TAE.Animation.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/Animation/TAE/TAE.Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/Animation/TAE/TAE.Event.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/Animation/TAE/TAE.EventGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/Animation/TAE/TAE.EventGroup.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/Animation/TAE/TAE.Template.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/Animation/TAE/TAE.Template.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/Animation/TAE/TAE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/Animation/TAE/TAE.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/AssimpUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/AssimpUtilities.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/BinaryReaderWriterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/BinaryReaderWriterExtensions.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/BindUri.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/BindUri.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/FLVERImporting/FLVER2Importer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/FLVERImporting/FLVER2Importer.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/FLVERImporting/FLVEREnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/FLVERImporting/FLVEREnums.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/SapDebugUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/SapDebugUtil.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/SapEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/SapEnums.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/SapLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/SapLogger.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/SapMath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/SapMath.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/SapUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/SapUtils.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/SoulsAssetPipeline.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/SoulsAssetPipeline.csproj -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/XmlStructs/XmlStructDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/XmlStructs/XmlStructDef.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/XmlStructs/XmlStructDefField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/XmlStructs/XmlStructDefField.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsAssetPipeline/XmlStructs/XmlStructException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsAssetPipeline/XmlStructs/XmlStructException.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/.gitattributes -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/.gitignore -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/FORMATS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/FORMATS.md -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/LICENSE -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/README.md -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats.sln -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/ACB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/ACB.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/ANI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/ANI.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/BHD5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/BHD5.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/BTAB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/BTAB.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/BTL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/BTL.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/BTPB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/BTPB.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/CCM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/CCM.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/CLM2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/CLM2.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/DCX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/DCX.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Anik.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Anik.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Anim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Anim.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Anio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Anio.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/DRB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/DRB.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Dlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Dlg.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Dlgo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Dlgo.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Scdk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Scdk.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Scdl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Scdl.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Scdo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Scdo.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Shape.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/EDD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/EDD.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/EDGE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/EDGE.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/EMELD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/EMELD.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/ENFL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/ENFL.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/ESD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/ESD.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/F2TR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/F2TR.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/FLVER/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/FLVER/Node.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/FMB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/FMB.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/FMG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/FMG.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/FSDATA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/FSDATA.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/FSLIBLZS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/FSLIBLZS.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/FXR3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/FXR3.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/GPARAM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/GPARAM.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/GRASS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/GRASS.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/LUAGNL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/LUAGNL.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/LUAINFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/LUAINFO.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/MATBIN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/MATBIN.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/MCG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/MCG.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/MCP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/MCP.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/MLB/IMLB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/MLB/IMLB.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/MQB/Cut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/MQB/Cut.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/MQB/MQB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/MQB/MQB.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/IMsb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/IMsb.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/Shape.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/MTD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/MTD.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/NGP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/NGP.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/NVA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/NVA.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/NVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/NVM.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/Other/LDMU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/Other/LDMU.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/Other/MDL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/Other/MDL.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/Other/MDL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/Other/MDL0.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/PMDCL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/PMDCL.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/RMB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/RMB.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/SMD4/Mesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/SMD4/Mesh.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/SMD4/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/SMD4/Node.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/SMD4/SMD4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/SMD4/SMD4.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/SMD4/Unk10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/SMD4/Unk10.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/TAE3/TAE3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/TAE3/TAE3.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/TPF/DDS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/TPF/DDS.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/TPF/TPF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Formats/TPF/TPF.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/SoulsFormats.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/SoulsFormats.csproj -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Utilities/EdgeGeom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Utilities/EdgeGeom.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Utilities/Kernel32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Utilities/Kernel32.cs -------------------------------------------------------------------------------- /FbxImporter/SoulsFormatsNEXT/SoulsFormats/Utilities/SFUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/SoulsFormatsNEXT/SoulsFormats/Utilities/SFUtil.cs -------------------------------------------------------------------------------- /FbxImporter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/FbxImporter/readme.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/README.md -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX/Animation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX/Animation.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX/HKX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX/HKX.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX/HavokAnimationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX/HavokAnimationData.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX/RootMotionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX/RootMotionData.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX/RootMotionDataPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX/RootMotionDataPlayer.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX/SplineCompressedAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX/SplineCompressedAnimation.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hclAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hclAction.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hclBufferLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hclBufferLayout.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hclBufferUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hclBufferUsage.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hclCapsuleShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hclCapsuleShape.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hclClothContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hclClothContainer.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hclClothData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hclClothData.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hclClothState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hclClothState.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hclCollidable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hclCollidable.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hclOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hclOperator.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hclPlaneShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hclPlaneShape.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hclSetupMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hclSetupMesh.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hclShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hclShape.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hclSimClothData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hclSimClothData.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hclSimClothPose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hclSimClothPose.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hclSkinOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hclSkinOperator.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hclSphereShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hclSphereShape.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkAabb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkAabb.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkAabb16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkAabb16.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkAabbHalf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkAabbHalf.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkAabbUint32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkAabbUint32.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkBaseObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkBaseObject.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkBitField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkBitField.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkClass.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkClassEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkClassEnum.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkClassEnumItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkClassEnumItem.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkClassMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkClassMember.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkColor.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkContactPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkContactPoint.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkFloat16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkFloat16.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkGeometry.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkIntRealPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkIntRealPair.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkLinkAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkLinkAttribute.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkLocalFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkLocalFrame.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkMeshBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkMeshBody.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkMeshMaterial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkMeshMaterial.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkMeshSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkMeshSection.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkMeshShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkMeshShape.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkMeshTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkMeshTexture.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkMotionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkMotionState.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkPackedVector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkPackedVector3.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkPackedVector8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkPackedVector8.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkQTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkQTransform.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkQTransformf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkQTransformf.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkResourceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkResourceBase.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkSetUint32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkSetUint32.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkSetUint64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkSetUint64.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkSkinBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkSkinBinding.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkSphere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkSphere.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkStringObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkStringObject.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkUFloat8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkUFloat8.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkUiAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkUiAttribute.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkUuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkUuid.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkVertexFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkVertexFormat.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkaAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkaAnimation.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkaBone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkaBone.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkaMeshBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkaMeshBinding.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkaSkeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkaSkeleton.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkaiCarver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkaiCarver.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkaiCharacter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkaiCharacter.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkaiEdgePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkaiEdgePath.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkaiNavMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkaiNavMesh.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkaiNavMeshEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkaiNavMeshEdge.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkaiNavMeshFace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkaiNavMeshFace.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkaiNavVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkaiNavVolume.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkaiPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkaiPath.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkaiPlaneVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkaiPlaneVolume.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkaiVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkaiVolume.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkaiWorld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkaiWorld.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbAssetBundle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbAssetBundle.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbBehaviorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbBehaviorInfo.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbBindable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbBindable.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbCharacter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbCharacter.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbClipTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbClipTrigger.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbCondition.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbContext.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbEvent.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbEventBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbEventBase.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbEventInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbEventInfo.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbEventPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbEventPayload.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbFootIkGains.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbFootIkGains.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbGenerator.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbHandle.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbJigglerGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbJigglerGroup.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbLayer.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbMessageLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbMessageLog.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbModifier.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbModifierList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbModifierList.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbNode.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbProjectData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbProjectData.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbSequence.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbShapeSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbShapeSetup.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbStateChooser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbStateChooser.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbStateMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbStateMachine.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbToolNodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbToolNodeType.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbVariableInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbVariableInfo.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbWorldEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbWorldEnums.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkbpTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkbpTarget.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkcdAdf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkcdAdf.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkcdFourAabb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkcdFourAabb.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkcdPlanarSolid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkcdPlanarSolid.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkcdShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkcdShape.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkcdShapeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkcdShapeType.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkcdSimdTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkcdSimdTree.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkcdStaticPvs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkcdStaticPvs.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hknpAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hknpAction.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hknpArrayAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hknpArrayAction.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hknpBallGun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hknpBallGun.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hknpBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hknpBody.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hknpBodyCinfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hknpBodyCinfo.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hknpBodyQuality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hknpBodyQuality.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hknpConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hknpConstraint.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hknpConvexShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hknpConvexShape.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hknpDummyShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hknpDummyShape.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hknpLodShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hknpLodShape.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hknpMaskedShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hknpMaskedShape.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hknpMaterial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hknpMaterial.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hknpMotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hknpMotion.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hknpMotionCinfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hknpMotionCinfo.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hknpRagdollData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hknpRagdollData.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hknpRefMaterial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hknpRefMaterial.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hknpShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hknpShape.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hknpShapeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hknpShapeType.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hknpSphereShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hknpSphereShape.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hknpUnaryAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hknpUnaryAction.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hknpVehicleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hknpVehicleData.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hknpWorldCinfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hknpWorldCinfo.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpAabbPhantom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpAabbPhantom.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpAction.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpArrayAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpArrayAction.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpBallGun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpBallGun.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpBinaryAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpBinaryAction.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpBoxMotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpBoxMotion.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpBoxShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpBoxShape.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpBridgeAtoms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpBridgeAtoms.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpBvShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpBvShape.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpBvTreeShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpBvTreeShape.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpCapsuleShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpCapsuleShape.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpCdBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpCdBody.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpCollidable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpCollidable.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpConvexShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpConvexShape.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpEntity.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpGravityGun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpGravityGun.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpGroupFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpGroupFilter.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpListShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpListShape.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpMaterial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpMaterial.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpMeshMaterial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpMeshMaterial.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpMeshShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpMeshShape.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpMoppCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpMoppCode.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpMotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpMotion.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpMotorAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpMotorAction.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpPhantom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpPhantom.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpPhysicsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpPhysicsData.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpRigidBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpRigidBody.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpShape.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpShapeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpShapeBase.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpShapeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpShapeInfo.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpShapePhantom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpShapePhantom.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpSphereMotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpSphereMotion.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpSphereShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpSphereShape.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpSpringAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpSpringAction.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpUnaryAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpUnaryAction.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpWorldCinfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpWorldCinfo.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkpWorldObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkpWorldObject.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkxAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkxAttribute.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkxBlob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkxBlob.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkxCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkxCamera.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkxEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkxEnum.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkxEnumItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkxEnumItem.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkxEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkxEnvironment.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkxIndexBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkxIndexBuffer.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkxLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkxLight.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkxMaterial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkxMaterial.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkxMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkxMesh.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkxMeshSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkxMeshSection.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkxNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkxNode.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkxScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkxScene.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkxSkinBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkxSkinBinding.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkxSpline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkxSpline.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkxTextureFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkxTextureFile.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/Autogen/hkxVertexBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/Autogen/hkxVertexBuffer.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/HKX2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/HKX2.csproj -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/IHavokObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/IHavokObject.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/PackFileCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/PackFileCommon.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/PackFileDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/PackFileDeserializer.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/HKX2/PackFileSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/HKX2/PackFileSerializer.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/NewBlendableTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/NewBlendableTransform.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/SIBCAM/SIBCAM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/SIBCAM/SIBCAM.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/TAE/TAE.Animation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/TAE/TAE.Animation.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/TAE/TAE.Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/TAE/TAE.Event.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/TAE/TAE.EventGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/TAE/TAE.EventGroup.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/TAE/TAE.Template.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/TAE/TAE.Template.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/Animation/TAE/TAE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/Animation/TAE/TAE.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/AnimationExporting/AnimationExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/AnimationExporting/AnimationExporter.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/AnimationImporting/AnimationImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/AnimationImporting/AnimationImporter.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/AnimationImporting/ImportedAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/AnimationImporting/ImportedAnimation.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/AssimpUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/AssimpUtilities.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/BinaryReaderWriterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/BinaryReaderWriterExtensions.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/BindUri.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/BindUri.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/FLVERImporting/FLVER2Importer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/FLVERImporting/FLVER2Importer.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/FLVERImporting/FLVER2MaterialInfoBank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/FLVERImporting/FLVER2MaterialInfoBank.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/FLVERImporting/FLVEREnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/FLVERImporting/FLVEREnums.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/FLVERImporting/FLVERImportHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/FLVERImporting/FLVERImportHelpers.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/FLVERImporting/TPFTextureFormatFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/FLVERImporting/TPFTextureFormatFinder.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/SapDebugUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/SapDebugUtil.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/SapEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/SapEnums.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/SapLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/SapLogger.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/SapMath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/SapMath.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/SapUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/SapUtils.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/SoulsAssetPipeline.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/SoulsAssetPipeline.csproj -------------------------------------------------------------------------------- /SoulsAssetPipeline/XmlStructs/XmlStructDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/XmlStructs/XmlStructDef.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/XmlStructs/XmlStructDefField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/XmlStructs/XmlStructDefField.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/XmlStructs/XmlStructException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/XmlStructs/XmlStructException.cs -------------------------------------------------------------------------------- /SoulsAssetPipeline/XmlStructs/XmlStructExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsAssetPipeline/XmlStructs/XmlStructExtensionMethods.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/.gitattributes -------------------------------------------------------------------------------- /SoulsFormatsNEXT/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/.gitignore -------------------------------------------------------------------------------- /SoulsFormatsNEXT/FORMATS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/FORMATS.md -------------------------------------------------------------------------------- /SoulsFormatsNEXT/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/LICENSE -------------------------------------------------------------------------------- /SoulsFormatsNEXT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/README.md -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats.sln -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/ACB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/ACB.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/ANI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/ANI.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/BHD5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/BHD5.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/BTAB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/BTAB.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/BTL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/BTL.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/BTPB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/BTPB.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Binder/BND/BND.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Binder/BND/BND.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Binder/BND2/BND2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Binder/BND2/BND2.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Binder/BND2/IBND2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Binder/BND2/IBND2.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Binder/BND3/BND3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Binder/BND3/BND3.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Binder/BND3/IBND3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Binder/BND3/IBND3.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Binder/BND4/BND4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Binder/BND4/BND4.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Binder/BND4/IBND4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Binder/BND4/IBND4.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Binder/BXF3/BXF3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Binder/BXF3/BXF3.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Binder/BXF3/IBXF3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Binder/BXF3/IBXF3.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Binder/BXF4/BXF4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Binder/BXF4/BXF4.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Binder/BXF4/IBXF4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Binder/BXF4/IBXF4.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Binder/Binder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Binder/Binder.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Binder/BinderFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Binder/BinderFile.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Binder/BinderReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Binder/BinderReader.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Binder/IBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Binder/IBinder.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/CCM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/CCM.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/CLM2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/CLM2.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/DCX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/DCX.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Anik.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Anik.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Anim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Anim.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Anio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Anio.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Control.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Control.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/DRB/DRB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/DRB.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Dlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Dlg.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Dlgo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Dlgo.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Scdk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Scdk.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Scdl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Scdl.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Scdo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Scdo.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Shape.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Texture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/DRB/Texture.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/EDD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/EDD.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/EDGE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/EDGE.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/EMELD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/EMELD.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/EMEVD/EMEVD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/EMEVD/EMEVD.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/EMEVD/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/EMEVD/Event.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/EMEVD/Instruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/EMEVD/Instruction.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/EMEVD/Layer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/EMEVD/Layer.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/EMEVD/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/EMEVD/Parameter.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/ENFL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/ENFL.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/ESD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/ESD.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/F2TR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/F2TR.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FFXDLSE/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FFXDLSE/Action.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FFXDLSE/Evaluatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FFXDLSE/Evaluatable.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FFXDLSE/FFXDLSE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FFXDLSE/FFXDLSE.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FFXDLSE/FXEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FFXDLSE/FXEffect.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FFXDLSE/Param.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FFXDLSE/Param.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FFXDLSE/ParamList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FFXDLSE/ParamList.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FFXDLSE/Primitive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FFXDLSE/Primitive.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FFXDLSE/ResourceSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FFXDLSE/ResourceSet.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FFXDLSE/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FFXDLSE/State.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FFXDLSE/StateMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FFXDLSE/StateMap.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FFXDLSE/Trigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FFXDLSE/Trigger.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FLVER/Dummy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FLVER/Dummy.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FLVER/FLVER0/FLVER0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FLVER/FLVER0/FLVER0.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FLVER/FLVER0/Mesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FLVER/FLVER0/Mesh.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FLVER/FLVER2/FLVER2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FLVER/FLVER2/FLVER2.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FLVER/FLVER2/GXList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FLVER/FLVER2/GXList.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FLVER/FLVER2/Mesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FLVER/FLVER2/Mesh.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FLVER/IFlver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FLVER/IFlver.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FLVER/LayoutMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FLVER/LayoutMember.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FLVER/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FLVER/Node.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FLVER/Vertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FLVER/Vertex.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FLVER/VertexColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FLVER/VertexColor.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FMB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FMB.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FMG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FMG.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FSDATA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FSDATA.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FSLIBLZS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FSLIBLZS.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/FXR3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/FXR3.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/GPARAM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/GPARAM.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/GRASS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/GRASS.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/LUAGNL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/LUAGNL.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/LUAINFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/LUAINFO.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MATBIN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MATBIN.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MCG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MCG.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MCP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MCP.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MLB/IMLB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MLB/IMLB.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MLB/IMlbResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MLB/IMlbResource.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MLB/MLB_AC4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MLB/MLB_AC4.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MLB/MLB_AC5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MLB/MLB_AC5.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MQB/CustomData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MQB/CustomData.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MQB/Cut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MQB/Cut.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MQB/Disposition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MQB/Disposition.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MQB/MQB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MQB/MQB.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MQB/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MQB/Resource.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MQB/Timeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MQB/Timeline.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MQB/Transform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MQB/Transform.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/FormatReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/FormatReference.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/IMsb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/IMsb.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB1/EventParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB1/EventParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB1/MSB1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB1/MSB1.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB1/ModelParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB1/ModelParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB1/PartsParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB1/PartsParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB1/PointParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB1/PointParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB2/EventParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB2/EventParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB2/LayerParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB2/LayerParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB2/MSB2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB2/MSB2.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB2/ModelParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB2/ModelParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB2/PartsParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB2/PartsParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB2/PointParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB2/PointParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB2/RouteParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB2/RouteParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB3/EventParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB3/EventParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB3/LayerParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB3/LayerParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB3/MSB3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB3/MSB3.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB3/ModelParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB3/ModelParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB3/PartsParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB3/PartsParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB3/PointParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB3/PointParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB3/RouteParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSB3/RouteParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBAC4/MSBAC4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBAC4/MSBAC4.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBB/EventParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBB/EventParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBB/MSBB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBB/MSBB.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBB/ModelParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBB/ModelParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBB/PartsParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBB/PartsParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBB/PointParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBB/PointParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBD/EventParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBD/EventParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBD/MSBD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBD/MSBD.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBD/ModelParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBD/ModelParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBD/PartsParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBD/PartsParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBD/PointParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBD/PointParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBDR/MSBDR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBDR/MSBDR.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBE/EventParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBE/EventParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBE/MSBE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBE/MSBE.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBE/ModelParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBE/ModelParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBE/PartsParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBE/PartsParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBE/PointParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBE/PointParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBE/RouteParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBE/RouteParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBFA/MSBFA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBFA/MSBFA.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBN/MSBN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBN/MSBN.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBReference.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBS/EventParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBS/EventParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBS/MSBS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBS/MSBS.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBS/ModelParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBS/ModelParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBS/PartsParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBS/PartsParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBS/PointParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBS/PointParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBS/RouteParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBS/RouteParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBV/EventParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBV/EventParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBV/LayerParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBV/LayerParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBV/MSBV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBV/MSBV.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBV/ModelParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBV/ModelParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBV/PartsParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBV/PartsParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBV/PointParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBV/PointParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBV/RouteParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBV/RouteParam.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBVD/MSBVD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBVD/MSBVD.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBVI/MSBVI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MSBVI/MSBVI.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MsbBoundingBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/MsbBoundingBox.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MSB/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MSB/Shape.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/MTD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/MTD.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Morpheme/NMB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Morpheme/NMB.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Morpheme/NSA/NSA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Morpheme/NSA/NSA.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/NGP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/NGP.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/NVA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/NVA.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/NVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/NVM.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/AC3SL/BND.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/AC3SL/BND.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/AC4/ANC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/AC4/ANC.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/AC4/DBSUB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/AC4/DBSUB.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/ACE3/BND.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/ACE3/BND.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/Dreamcast/MGF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/Dreamcast/MGF.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/KF4/CHR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/KF4/CHR.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/KF4/DAT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/KF4/DAT.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/KF4/MAP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/KF4/MAP.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/KF4/OM2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/KF4/OM2.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/Kuon/BND.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/Kuon/BND.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/Kuon/DVDBND.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/Kuon/DVDBND.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/LDMU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/LDMU.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/MDL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/MDL.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/MDL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/MDL0.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/MDL4/Dummy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/MDL4/Dummy.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/MDL4/MDL4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/MDL4/MDL4.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/MDL4/Material.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/MDL4/Material.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/MDL4/Mesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/MDL4/Mesh.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/MDL4/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/MDL4/Node.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/MDL4/Vertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/MDL4/Vertex.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/MDLEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/MDLEnum.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/MWC/DEV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/MWC/DEV.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/MWC/MDAT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/MWC/MDAT.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/MWC/MMD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/MWC/MMD.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/MWC/OTR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/MWC/OTR.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/MWC/SMD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/MWC/SMD.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/MWC/TDAT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/MWC/TDAT.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/Murakumo/DDL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/Murakumo/DDL.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/Otogi2/DAT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/Otogi2/DAT.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/SOM/MDO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/SOM/MDO.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/Other/Zero3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/Other/Zero3.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/PARAM/PARAM/Cell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/PARAM/PARAM/Cell.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/PARAM/PARAM/PARAM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/PARAM/PARAM/PARAM.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/PARAM/PARAM/Row.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/PARAM/PARAM/Row.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/PARAM/PARAMTDF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/PARAM/PARAMTDF.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/PARAM/ParamDbpUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/PARAM/ParamDbpUtil.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/PARAM/ParamUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/PARAM/ParamUtil.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/PMDCL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/PMDCL.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/RMB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/RMB.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/SMD4/Mesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/SMD4/Mesh.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/SMD4/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/SMD4/Node.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/SMD4/SMD4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/SMD4/SMD4.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/SMD4/Unk10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/SMD4/Unk10.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/SMD4/Vertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/SMD4/Vertex.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/TAE3/TAE3.Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/TAE3/TAE3.Event.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/TAE3/TAE3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/TAE3/TAE3.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/TPF/DDS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/TPF/DDS.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/TPF/Headerizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/TPF/Headerizer.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Formats/TPF/TPF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Formats/TPF/TPF.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/SoulsFormats.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/SoulsFormats.csproj -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Utilities/EdgeGeom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Utilities/EdgeGeom.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Utilities/EndianHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Utilities/EndianHelper.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Utilities/Formats/SoulsFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Utilities/Formats/SoulsFile.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Utilities/HexHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Utilities/HexHelper.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Utilities/IO/BinaryReaderEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Utilities/IO/BinaryReaderEx.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Utilities/IO/BinaryWriterEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Utilities/IO/BinaryWriterEx.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Utilities/IO/PathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Utilities/IO/PathHelper.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Utilities/Kernel32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Utilities/Kernel32.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Utilities/MathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Utilities/MathHelper.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Utilities/SFUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Utilities/SFUtil.cs -------------------------------------------------------------------------------- /SoulsFormatsNEXT/SoulsFormats/Utilities/Text/SFEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pear0533/FLVER_Editor/HEAD/SoulsFormatsNEXT/SoulsFormats/Utilities/Text/SFEncoding.cs --------------------------------------------------------------------------------