├── Editor.meta ├── Editor ├── Base.meta ├── Base │ ├── MeshEffectsBaseInspector.cs │ └── MeshEffectsBaseInspector.cs.meta ├── MeshBlow.meta ├── MeshBlow │ ├── MeshBlowInspector.cs │ └── MeshBlowInspector.cs.meta ├── MeshFragmentization.meta ├── MeshFragmentization │ ├── MeshFragmentizationInspector.cs │ └── MeshFragmentizationInspector.cs.meta ├── MeshVortex.meta ├── MeshVortex │ ├── MeshVortexInspector.cs │ └── MeshVortexInspector.cs.meta ├── MeshWave.meta ├── MeshWave │ ├── MeshWaveInspector.cs │ └── MeshWaveInspector.cs.meta ├── Utility.meta └── Utility │ ├── EditorToolkit.cs │ └── EditorToolkit.cs.meta ├── LICENSE ├── LICENSE.meta ├── README.md ├── README.md.meta ├── RunTime.meta └── RunTime ├── Base.meta ├── Base ├── MeshEffectsBase.cs └── MeshEffectsBase.cs.meta ├── Data.meta ├── Data ├── Fragment.cs ├── Fragment.cs.meta ├── MeshData.cs ├── MeshData.cs.meta ├── MeshElement.cs ├── MeshElement.cs.meta ├── Triangle.cs ├── Triangle.cs.meta ├── Vertex.cs └── Vertex.cs.meta ├── MeshBlow.meta ├── MeshBlow ├── MeshBlow.cs └── MeshBlow.cs.meta ├── MeshEditor.Effects.RunTime.asmdef ├── MeshEditor.Effects.RunTime.asmdef.meta ├── MeshFragmentization.meta ├── MeshFragmentization ├── FragmentBehaviour.cs ├── FragmentBehaviour.cs.meta ├── MeshFragmentization.cs └── MeshFragmentization.cs.meta ├── MeshVortex.meta ├── MeshVortex ├── MeshVortex.cs └── MeshVortex.cs.meta ├── MeshWave.meta ├── MeshWave ├── MeshWave.cs └── MeshWave.cs.meta ├── Utility.meta └── Utility ├── Toolkit.cs └── Toolkit.cs.meta /Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/Editor.meta -------------------------------------------------------------------------------- /Editor/Base.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/Editor/Base.meta -------------------------------------------------------------------------------- /Editor/Base/MeshEffectsBaseInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/Editor/Base/MeshEffectsBaseInspector.cs -------------------------------------------------------------------------------- /Editor/Base/MeshEffectsBaseInspector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/Editor/Base/MeshEffectsBaseInspector.cs.meta -------------------------------------------------------------------------------- /Editor/MeshBlow.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/Editor/MeshBlow.meta -------------------------------------------------------------------------------- /Editor/MeshBlow/MeshBlowInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/Editor/MeshBlow/MeshBlowInspector.cs -------------------------------------------------------------------------------- /Editor/MeshBlow/MeshBlowInspector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/Editor/MeshBlow/MeshBlowInspector.cs.meta -------------------------------------------------------------------------------- /Editor/MeshFragmentization.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/Editor/MeshFragmentization.meta -------------------------------------------------------------------------------- /Editor/MeshFragmentization/MeshFragmentizationInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/Editor/MeshFragmentization/MeshFragmentizationInspector.cs -------------------------------------------------------------------------------- /Editor/MeshFragmentization/MeshFragmentizationInspector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/Editor/MeshFragmentization/MeshFragmentizationInspector.cs.meta -------------------------------------------------------------------------------- /Editor/MeshVortex.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/Editor/MeshVortex.meta -------------------------------------------------------------------------------- /Editor/MeshVortex/MeshVortexInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/Editor/MeshVortex/MeshVortexInspector.cs -------------------------------------------------------------------------------- /Editor/MeshVortex/MeshVortexInspector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/Editor/MeshVortex/MeshVortexInspector.cs.meta -------------------------------------------------------------------------------- /Editor/MeshWave.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/Editor/MeshWave.meta -------------------------------------------------------------------------------- /Editor/MeshWave/MeshWaveInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/Editor/MeshWave/MeshWaveInspector.cs -------------------------------------------------------------------------------- /Editor/MeshWave/MeshWaveInspector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/Editor/MeshWave/MeshWaveInspector.cs.meta -------------------------------------------------------------------------------- /Editor/Utility.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/Editor/Utility.meta -------------------------------------------------------------------------------- /Editor/Utility/EditorToolkit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/Editor/Utility/EditorToolkit.cs -------------------------------------------------------------------------------- /Editor/Utility/EditorToolkit.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/Editor/Utility/EditorToolkit.cs.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/LICENSE.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/README.md -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/README.md.meta -------------------------------------------------------------------------------- /RunTime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime.meta -------------------------------------------------------------------------------- /RunTime/Base.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/Base.meta -------------------------------------------------------------------------------- /RunTime/Base/MeshEffectsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/Base/MeshEffectsBase.cs -------------------------------------------------------------------------------- /RunTime/Base/MeshEffectsBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/Base/MeshEffectsBase.cs.meta -------------------------------------------------------------------------------- /RunTime/Data.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/Data.meta -------------------------------------------------------------------------------- /RunTime/Data/Fragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/Data/Fragment.cs -------------------------------------------------------------------------------- /RunTime/Data/Fragment.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/Data/Fragment.cs.meta -------------------------------------------------------------------------------- /RunTime/Data/MeshData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/Data/MeshData.cs -------------------------------------------------------------------------------- /RunTime/Data/MeshData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/Data/MeshData.cs.meta -------------------------------------------------------------------------------- /RunTime/Data/MeshElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/Data/MeshElement.cs -------------------------------------------------------------------------------- /RunTime/Data/MeshElement.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/Data/MeshElement.cs.meta -------------------------------------------------------------------------------- /RunTime/Data/Triangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/Data/Triangle.cs -------------------------------------------------------------------------------- /RunTime/Data/Triangle.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/Data/Triangle.cs.meta -------------------------------------------------------------------------------- /RunTime/Data/Vertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/Data/Vertex.cs -------------------------------------------------------------------------------- /RunTime/Data/Vertex.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/Data/Vertex.cs.meta -------------------------------------------------------------------------------- /RunTime/MeshBlow.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/MeshBlow.meta -------------------------------------------------------------------------------- /RunTime/MeshBlow/MeshBlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/MeshBlow/MeshBlow.cs -------------------------------------------------------------------------------- /RunTime/MeshBlow/MeshBlow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/MeshBlow/MeshBlow.cs.meta -------------------------------------------------------------------------------- /RunTime/MeshEditor.Effects.RunTime.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MeshEditor.Effects.RunTime" 3 | } 4 | -------------------------------------------------------------------------------- /RunTime/MeshEditor.Effects.RunTime.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/MeshEditor.Effects.RunTime.asmdef.meta -------------------------------------------------------------------------------- /RunTime/MeshFragmentization.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/MeshFragmentization.meta -------------------------------------------------------------------------------- /RunTime/MeshFragmentization/FragmentBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/MeshFragmentization/FragmentBehaviour.cs -------------------------------------------------------------------------------- /RunTime/MeshFragmentization/FragmentBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/MeshFragmentization/FragmentBehaviour.cs.meta -------------------------------------------------------------------------------- /RunTime/MeshFragmentization/MeshFragmentization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/MeshFragmentization/MeshFragmentization.cs -------------------------------------------------------------------------------- /RunTime/MeshFragmentization/MeshFragmentization.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/MeshFragmentization/MeshFragmentization.cs.meta -------------------------------------------------------------------------------- /RunTime/MeshVortex.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/MeshVortex.meta -------------------------------------------------------------------------------- /RunTime/MeshVortex/MeshVortex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/MeshVortex/MeshVortex.cs -------------------------------------------------------------------------------- /RunTime/MeshVortex/MeshVortex.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/MeshVortex/MeshVortex.cs.meta -------------------------------------------------------------------------------- /RunTime/MeshWave.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/MeshWave.meta -------------------------------------------------------------------------------- /RunTime/MeshWave/MeshWave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/MeshWave/MeshWave.cs -------------------------------------------------------------------------------- /RunTime/MeshWave/MeshWave.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/MeshWave/MeshWave.cs.meta -------------------------------------------------------------------------------- /RunTime/Utility.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/Utility.meta -------------------------------------------------------------------------------- /RunTime/Utility/Toolkit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/Utility/Toolkit.cs -------------------------------------------------------------------------------- /RunTime/Utility/Toolkit.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaiTingHu/MeshEditor.Effects/HEAD/RunTime/Utility/Toolkit.cs.meta --------------------------------------------------------------------------------