├── .gitignore ├── Assets ├── ExcelImporter.meta └── ExcelImporter │ ├── Editor.meta │ ├── Editor │ ├── ExcelAssetScriptMenu.cs │ ├── ExcelAssetScriptMenu.cs.meta │ ├── ExcelImporter.Editor.asmdef │ ├── ExcelImporter.Editor.asmdef.meta │ ├── ExcelImporter.cs │ ├── ExcelImporter.cs.meta │ ├── NPOI.meta │ ├── NPOI │ │ ├── LICENSE │ │ ├── LICENSE.meta │ │ ├── Net20.meta │ │ ├── Net20 │ │ │ ├── ICSharpCode.SharpZipLib.dll │ │ │ ├── ICSharpCode.SharpZipLib.dll.meta │ │ │ ├── NPOI.OOXML.dll │ │ │ ├── NPOI.OOXML.dll.meta │ │ │ ├── NPOI.OpenXml4Net.dll │ │ │ ├── NPOI.OpenXml4Net.dll.meta │ │ │ ├── NPOI.OpenXmlFormats.dll │ │ │ ├── NPOI.OpenXmlFormats.dll.meta │ │ │ ├── NPOI.XML │ │ │ ├── NPOI.XML.meta │ │ │ ├── NPOI.dll │ │ │ └── NPOI.dll.meta │ │ ├── Read Me.txt │ │ ├── Read Me.txt.meta │ │ ├── Release Notes.txt │ │ └── Release Notes.txt.meta │ ├── Templates.meta │ └── Templates │ │ ├── ExcelAssetScriptTemplete.cs.txt │ │ └── ExcelAssetScriptTemplete.cs.txt.meta │ ├── Example.meta │ ├── Example │ ├── Example.unity │ ├── Example.unity.meta │ ├── Excels.meta │ ├── Excels │ │ ├── MstItems.asset │ │ ├── MstItems.asset.meta │ │ ├── MstItems.xlsx │ │ └── MstItems.xlsx.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── Entity.meta │ │ ├── Entity │ │ ├── MstItemEntity.cs │ │ └── MstItemEntity.cs.meta │ │ ├── Example.cs │ │ ├── Example.cs.meta │ │ ├── ExcelAsset.meta │ │ └── ExcelAsset │ │ ├── MstItems.cs │ │ └── MstItems.cs.meta │ ├── Runtime.meta │ ├── Runtime │ ├── ExcelAssetAttribute.cs │ ├── ExcelAssetAttribute.cs.meta │ ├── ExcelImporter.asmdef │ └── ExcelImporter.asmdef.meta │ ├── package.json │ └── package.json.meta ├── LICENSE ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── XRSettings.asset └── editorsettings.asset └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/ExcelImporter.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/ExcelAssetScriptMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/ExcelAssetScriptMenu.cs -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/ExcelAssetScriptMenu.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/ExcelAssetScriptMenu.cs.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/ExcelImporter.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/ExcelImporter.Editor.asmdef -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/ExcelImporter.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/ExcelImporter.Editor.asmdef.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/ExcelImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/ExcelImporter.cs -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/ExcelImporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/ExcelImporter.cs.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/NPOI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/NPOI.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/NPOI/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/NPOI/LICENSE -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/NPOI/LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/NPOI/LICENSE.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/NPOI/Net20.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/NPOI/Net20.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/NPOI/Net20/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/NPOI/Net20/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/NPOI/Net20/ICSharpCode.SharpZipLib.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/NPOI/Net20/ICSharpCode.SharpZipLib.dll.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/NPOI/Net20/NPOI.OOXML.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/NPOI/Net20/NPOI.OOXML.dll -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/NPOI/Net20/NPOI.OOXML.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/NPOI/Net20/NPOI.OOXML.dll.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/NPOI/Net20/NPOI.OpenXml4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/NPOI/Net20/NPOI.OpenXml4Net.dll -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/NPOI/Net20/NPOI.OpenXml4Net.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/NPOI/Net20/NPOI.OpenXml4Net.dll.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/NPOI/Net20/NPOI.OpenXmlFormats.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/NPOI/Net20/NPOI.OpenXmlFormats.dll -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/NPOI/Net20/NPOI.OpenXmlFormats.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/NPOI/Net20/NPOI.OpenXmlFormats.dll.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/NPOI/Net20/NPOI.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/NPOI/Net20/NPOI.XML -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/NPOI/Net20/NPOI.XML.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/NPOI/Net20/NPOI.XML.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/NPOI/Net20/NPOI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/NPOI/Net20/NPOI.dll -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/NPOI/Net20/NPOI.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/NPOI/Net20/NPOI.dll.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/NPOI/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/NPOI/Read Me.txt -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/NPOI/Read Me.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/NPOI/Read Me.txt.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/NPOI/Release Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/NPOI/Release Notes.txt -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/NPOI/Release Notes.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/NPOI/Release Notes.txt.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/Templates.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/Templates.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/Templates/ExcelAssetScriptTemplete.cs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/Templates/ExcelAssetScriptTemplete.cs.txt -------------------------------------------------------------------------------- /Assets/ExcelImporter/Editor/Templates/ExcelAssetScriptTemplete.cs.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Editor/Templates/ExcelAssetScriptTemplete.cs.txt.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Example.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Example.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Example/Example.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Example/Example.unity -------------------------------------------------------------------------------- /Assets/ExcelImporter/Example/Example.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Example/Example.unity.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Example/Excels.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Example/Excels.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Example/Excels/MstItems.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Example/Excels/MstItems.asset -------------------------------------------------------------------------------- /Assets/ExcelImporter/Example/Excels/MstItems.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Example/Excels/MstItems.asset.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Example/Excels/MstItems.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Example/Excels/MstItems.xlsx -------------------------------------------------------------------------------- /Assets/ExcelImporter/Example/Excels/MstItems.xlsx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Example/Excels/MstItems.xlsx.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Example/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Example/Scripts.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Example/Scripts/Entity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Example/Scripts/Entity.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Example/Scripts/Entity/MstItemEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Example/Scripts/Entity/MstItemEntity.cs -------------------------------------------------------------------------------- /Assets/ExcelImporter/Example/Scripts/Entity/MstItemEntity.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Example/Scripts/Entity/MstItemEntity.cs.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Example/Scripts/Example.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Example/Scripts/Example.cs -------------------------------------------------------------------------------- /Assets/ExcelImporter/Example/Scripts/Example.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Example/Scripts/Example.cs.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Example/Scripts/ExcelAsset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Example/Scripts/ExcelAsset.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Example/Scripts/ExcelAsset/MstItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Example/Scripts/ExcelAsset/MstItems.cs -------------------------------------------------------------------------------- /Assets/ExcelImporter/Example/Scripts/ExcelAsset/MstItems.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Example/Scripts/ExcelAsset/MstItems.cs.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Runtime.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Runtime/ExcelAssetAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Runtime/ExcelAssetAttribute.cs -------------------------------------------------------------------------------- /Assets/ExcelImporter/Runtime/ExcelAssetAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Runtime/ExcelAssetAttribute.cs.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/Runtime/ExcelImporter.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ExcelImporter" 3 | } 4 | -------------------------------------------------------------------------------- /Assets/ExcelImporter/Runtime/ExcelImporter.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/Runtime/ExcelImporter.asmdef.meta -------------------------------------------------------------------------------- /Assets/ExcelImporter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/package.json -------------------------------------------------------------------------------- /Assets/ExcelImporter/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Assets/ExcelImporter/package.json.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/editorsettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/ProjectSettings/editorsettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikito/unity-excel-importer/HEAD/README.md --------------------------------------------------------------------------------