├── .github └── workflows │ └── release.yml ├── .gitignore ├── .gitmodules ├── .releaserc.yml ├── CHANGELOG.md ├── LICENSE ├── Packages └── com.nekometer.esnya.esnya-unity-tools │ ├── Editor.meta │ ├── Editor │ ├── 2019 │ │ ├── Resources.meta │ │ └── Resources │ │ │ ├── UIElements.meta │ │ │ └── UIElements │ │ │ ├── Common.uss │ │ │ ├── Common.uss.meta │ │ │ ├── UdonDiff.meta │ │ │ └── UdonDiff │ │ │ ├── DiffItem.uxml │ │ │ ├── DiffItem.uxml.meta │ │ │ ├── EditorWindow.uxml │ │ │ └── EditorWindow.uxml.meta │ ├── 2019.meta │ ├── AnimationReplacer.cs │ ├── AnimationReplacer.cs.meta │ ├── AnimationTool.cs │ ├── AnimationTool.cs.meta │ ├── AssetRenamer.cs │ ├── AssetRenamer.cs.meta │ ├── AutoTexture.cs │ ├── AutoTexture.cs.meta │ ├── BlendTreeCreator.cs │ ├── BlendTreeCreator.cs.meta │ ├── ColliderTool.cs │ ├── ColliderTool.cs.meta │ ├── CreditGeneratorInspector.cs │ ├── CreditGeneratorInspector.cs.meta │ ├── CrunchAll.cs │ ├── CrunchAll.cs.meta │ ├── DependencyTree.cs │ ├── DependencyTree.cs.meta │ ├── DupNameRemover.cs │ ├── DupNameRemover.cs.meta │ ├── EsnyaEditorUtilities.cs │ ├── EsnyaEditorUtilities.cs.meta │ ├── EsnyaUnityTools.Editor.asmdef │ ├── EsnyaUnityTools.Editor.asmdef.meta │ ├── ExEquipments.cs │ ├── ExEquipments.cs.meta │ ├── FBXAnimationConverterInspeactor.cs │ ├── FBXAnimationConverterInspeactor.cs.meta │ ├── FFMpegNormalize.cs │ ├── FFMpegNormalize.cs.meta │ ├── GISTool.cs │ ├── GISTool.cs.meta │ ├── LODTool.cs │ ├── LODTool.cs.meta │ ├── LangVersionReplacer.cs │ ├── LangVersionReplacer.cs.meta │ ├── MeshTools.cs │ ├── MeshTools.cs.meta │ ├── PrefabRefinery.cs │ ├── PrefabRefinery.cs.meta │ ├── PrefabSubsetEditor.cs │ ├── PrefabSubsetEditor.cs.meta │ ├── RenameTool.cs │ ├── RenameTool.cs.meta │ ├── RendererTools.cs │ ├── RendererTools.cs.meta │ ├── Resources.meta │ ├── Resources │ │ ├── SkinnedMeshTool.uxml │ │ └── SkinnedMeshTool.uxml.meta │ ├── SelectionTool.cs │ ├── SelectionTool.cs.meta │ ├── SkinnedMeshTool.cs │ ├── SkinnedMeshTool.cs.meta │ ├── StaticTool.cs │ ├── StaticTool.cs.meta │ ├── TerrainTools.cs │ ├── TerrainTools.cs.meta │ ├── TransformTool.cs │ ├── TransformTool.cs.meta │ ├── UI.meta │ ├── UI │ │ ├── EsnyaEnhancedUI.cs │ │ └── EsnyaEnhancedUI.cs.meta │ ├── Utility.meta │ ├── Utility │ │ ├── AnimatorUtility.cs │ │ ├── AnimatorUtility.cs.meta │ │ ├── AssetUtility.cs │ │ ├── AssetUtility.cs.meta │ │ ├── GameObjectUtility.cs │ │ └── GameObjectUtility.cs.meta │ ├── VRCCamPatcher.cs │ ├── VRCCamPatcher.cs.meta │ ├── ViewPositionVisualizerController.cs │ └── ViewPositionVisualizerController.cs.meta │ ├── LICENSE │ ├── LICENSE.meta │ ├── Prefabs.meta │ ├── Prefabs │ ├── CreditGenerator.prefab │ ├── CreditGenerator.prefab.meta │ ├── StaticProfile.prefab │ └── StaticProfile.prefab.meta │ ├── Scripts.meta │ ├── Scripts │ ├── CreditGenerator.cs │ ├── CreditGenerator.cs.meta │ ├── EsnyaUnityTools.Scripts.asmdef │ ├── EsnyaUnityTools.Scripts.asmdef.meta │ ├── FBXAnimationConverter.cs │ ├── FBXAnimationConverter.cs.meta │ ├── MergedScene.cs │ ├── MergedScene.cs.meta │ ├── PrefabSubset.cs │ ├── PrefabSubset.cs.meta │ ├── StaticProfile.cs │ ├── StaticProfile.cs.meta │ ├── ViewPositionVisualizer.cs │ └── ViewPositionVisualizer.cs.meta │ ├── package.json │ └── package.json.meta ├── README.md └── package.json /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/.gitmodules -------------------------------------------------------------------------------- /.releaserc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/.releaserc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/2019.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/2019.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/2019/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/2019/Resources.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/2019/Resources/UIElements.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/2019/Resources/UIElements.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/2019/Resources/UIElements/Common.uss: -------------------------------------------------------------------------------- 1 | .hidden { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/2019/Resources/UIElements/Common.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/2019/Resources/UIElements/Common.uss.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/2019/Resources/UIElements/UdonDiff.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/2019/Resources/UIElements/UdonDiff.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/2019/Resources/UIElements/UdonDiff/DiffItem.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/2019/Resources/UIElements/UdonDiff/DiffItem.uxml -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/2019/Resources/UIElements/UdonDiff/DiffItem.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/2019/Resources/UIElements/UdonDiff/DiffItem.uxml.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/2019/Resources/UIElements/UdonDiff/EditorWindow.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/2019/Resources/UIElements/UdonDiff/EditorWindow.uxml -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/2019/Resources/UIElements/UdonDiff/EditorWindow.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/2019/Resources/UIElements/UdonDiff/EditorWindow.uxml.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/AnimationReplacer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/AnimationReplacer.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/AnimationReplacer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/AnimationReplacer.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/AnimationTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/AnimationTool.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/AnimationTool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/AnimationTool.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/AssetRenamer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/AssetRenamer.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/AssetRenamer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/AssetRenamer.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/AutoTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/AutoTexture.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/AutoTexture.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/AutoTexture.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/BlendTreeCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/BlendTreeCreator.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/BlendTreeCreator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/BlendTreeCreator.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/ColliderTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/ColliderTool.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/ColliderTool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/ColliderTool.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/CreditGeneratorInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/CreditGeneratorInspector.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/CreditGeneratorInspector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/CreditGeneratorInspector.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/CrunchAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/CrunchAll.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/CrunchAll.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/CrunchAll.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/DependencyTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/DependencyTree.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/DependencyTree.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/DependencyTree.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/DupNameRemover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/DupNameRemover.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/DupNameRemover.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/DupNameRemover.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/EsnyaEditorUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/EsnyaEditorUtilities.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/EsnyaEditorUtilities.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/EsnyaEditorUtilities.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/EsnyaUnityTools.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/EsnyaUnityTools.Editor.asmdef -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/EsnyaUnityTools.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/EsnyaUnityTools.Editor.asmdef.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/ExEquipments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/ExEquipments.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/ExEquipments.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/ExEquipments.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/FBXAnimationConverterInspeactor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/FBXAnimationConverterInspeactor.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/FBXAnimationConverterInspeactor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/FBXAnimationConverterInspeactor.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/FFMpegNormalize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/FFMpegNormalize.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/FFMpegNormalize.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/FFMpegNormalize.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/GISTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/GISTool.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/GISTool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/GISTool.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/LODTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/LODTool.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/LODTool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/LODTool.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/LangVersionReplacer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/LangVersionReplacer.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/LangVersionReplacer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/LangVersionReplacer.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/MeshTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/MeshTools.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/MeshTools.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/MeshTools.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/PrefabRefinery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/PrefabRefinery.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/PrefabRefinery.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/PrefabRefinery.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/PrefabSubsetEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/PrefabSubsetEditor.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/PrefabSubsetEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/PrefabSubsetEditor.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/RenameTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/RenameTool.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/RenameTool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/RenameTool.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/RendererTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/RendererTools.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/RendererTools.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/RendererTools.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/Resources.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/Resources/SkinnedMeshTool.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/Resources/SkinnedMeshTool.uxml -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/Resources/SkinnedMeshTool.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/Resources/SkinnedMeshTool.uxml.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/SelectionTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/SelectionTool.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/SelectionTool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/SelectionTool.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/SkinnedMeshTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/SkinnedMeshTool.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/SkinnedMeshTool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/SkinnedMeshTool.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/StaticTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/StaticTool.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/StaticTool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/StaticTool.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/TerrainTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/TerrainTools.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/TerrainTools.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/TerrainTools.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/TransformTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/TransformTool.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/TransformTool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/TransformTool.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/UI.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/UI/EsnyaEnhancedUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/UI/EsnyaEnhancedUI.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/UI/EsnyaEnhancedUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/UI/EsnyaEnhancedUI.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/Utility.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/Utility.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/Utility/AnimatorUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/Utility/AnimatorUtility.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/Utility/AnimatorUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/Utility/AnimatorUtility.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/Utility/AssetUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/Utility/AssetUtility.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/Utility/AssetUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/Utility/AssetUtility.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/Utility/GameObjectUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/Utility/GameObjectUtility.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/Utility/GameObjectUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/Utility/GameObjectUtility.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/VRCCamPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/VRCCamPatcher.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/VRCCamPatcher.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/VRCCamPatcher.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/ViewPositionVisualizerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/ViewPositionVisualizerController.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Editor/ViewPositionVisualizerController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Editor/ViewPositionVisualizerController.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/LICENSE -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/LICENSE.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Prefabs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Prefabs/CreditGenerator.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Prefabs/CreditGenerator.prefab -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Prefabs/CreditGenerator.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Prefabs/CreditGenerator.prefab.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Prefabs/StaticProfile.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Prefabs/StaticProfile.prefab -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Prefabs/StaticProfile.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Prefabs/StaticProfile.prefab.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Scripts.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/CreditGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/CreditGenerator.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/CreditGenerator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/CreditGenerator.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/EsnyaUnityTools.Scripts.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/EsnyaUnityTools.Scripts.asmdef -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/EsnyaUnityTools.Scripts.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/EsnyaUnityTools.Scripts.asmdef.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/FBXAnimationConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/FBXAnimationConverter.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/FBXAnimationConverter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/FBXAnimationConverter.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/MergedScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/MergedScene.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/MergedScene.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/MergedScene.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/PrefabSubset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/PrefabSubset.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/PrefabSubset.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/PrefabSubset.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/StaticProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/StaticProfile.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/StaticProfile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/StaticProfile.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/ViewPositionVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/ViewPositionVisualizer.cs -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/ViewPositionVisualizer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/Scripts/ViewPositionVisualizer.cs.meta -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/package.json -------------------------------------------------------------------------------- /Packages/com.nekometer.esnya.esnya-unity-tools/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/Packages/com.nekometer.esnya.esnya-unity-tools/package.json.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/EsnyaUnityTools/HEAD/package.json --------------------------------------------------------------------------------