├── .all-contributorsrc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── .releaserc.json ├── CHANGELOG.md ├── CHANGELOG.md.meta ├── Documentation~ ├── AddressableImportSettings-ContextMenu.png ├── AddressableImportSettings-Create.png ├── AddressableImportSettings-Insepctor.png ├── AddressableImportSettings-Insepctor2.png ├── AddressableImporter.md └── MultipleSettings.png ├── Editor.meta ├── Editor ├── AddressableImportFilter.cs ├── AddressableImportFilter.cs.meta ├── AddressableImportRule.cs ├── AddressableImportRule.cs.meta ├── AddressableImportSettings.cs ├── AddressableImportSettings.cs.meta ├── AddressableImportSettingsList.cs ├── AddressableImportSettingsList.cs.meta ├── AddressableImporter.cs ├── AddressableImporter.cs.meta ├── Attributes.meta ├── Attributes │ ├── ButtonMethodAttribute.cs │ ├── ButtonMethodAttribute.cs.meta │ ├── ConditionalFieldAttribute.cs │ ├── ConditionalFieldAttribute.cs.meta │ ├── FoldoutColorGroupAttribute.cs │ ├── FoldoutColorGroupAttribute.cs.meta │ ├── LabelAttribute.cs │ └── LabelAttribute.cs.meta ├── Helper.meta ├── Helper │ ├── AddressableImportRuleAttributeProcessor.cs │ ├── AddressableImportRuleAttributeProcessor.cs.meta │ ├── AddressableImportSettingsEditor.cs │ ├── AddressableImportSettingsEditor.cs.meta │ ├── AddressableImportSettingsListEditor.cs │ ├── AddressableImportSettingsListEditor.cs.meta │ ├── AddressableImporterMethodHandler.cs │ ├── AddressableImporterMethodHandler.cs.meta │ ├── ScriptableObjectEditor.cs │ └── ScriptableObjectEditor.cs.meta ├── ISearchFilterable.cs ├── ISearchFilterable.cs.meta ├── Unity.AddressableImporter.Editor.asmdef └── Unity.AddressableImporter.Editor.asmdef.meta ├── LICENSE.md ├── LICENSE.md.meta ├── Media~ ├── icon-128.png ├── icon-512.png ├── icon.svg └── ogimage.psd ├── README.md ├── README.md.meta ├── Tests.meta ├── Tests ├── Editor.meta └── Editor │ ├── AddressableImportRuleTests.cs │ ├── AddressableImportRuleTests.cs.meta │ ├── Unity.AddressableImporter.Editor.Tests.asmdef │ └── Unity.AddressableImporter.Editor.Tests.asmdef.meta ├── package.json └── package.json.meta /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: openupm 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .all-contributorsrc 2 | .github 3 | .releaserc.json 4 | -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/.releaserc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/CHANGELOG.md.meta -------------------------------------------------------------------------------- /Documentation~/AddressableImportSettings-ContextMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Documentation~/AddressableImportSettings-ContextMenu.png -------------------------------------------------------------------------------- /Documentation~/AddressableImportSettings-Create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Documentation~/AddressableImportSettings-Create.png -------------------------------------------------------------------------------- /Documentation~/AddressableImportSettings-Insepctor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Documentation~/AddressableImportSettings-Insepctor.png -------------------------------------------------------------------------------- /Documentation~/AddressableImportSettings-Insepctor2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Documentation~/AddressableImportSettings-Insepctor2.png -------------------------------------------------------------------------------- /Documentation~/AddressableImporter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Documentation~/AddressableImporter.md -------------------------------------------------------------------------------- /Documentation~/MultipleSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Documentation~/MultipleSettings.png -------------------------------------------------------------------------------- /Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor.meta -------------------------------------------------------------------------------- /Editor/AddressableImportFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/AddressableImportFilter.cs -------------------------------------------------------------------------------- /Editor/AddressableImportFilter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/AddressableImportFilter.cs.meta -------------------------------------------------------------------------------- /Editor/AddressableImportRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/AddressableImportRule.cs -------------------------------------------------------------------------------- /Editor/AddressableImportRule.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/AddressableImportRule.cs.meta -------------------------------------------------------------------------------- /Editor/AddressableImportSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/AddressableImportSettings.cs -------------------------------------------------------------------------------- /Editor/AddressableImportSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/AddressableImportSettings.cs.meta -------------------------------------------------------------------------------- /Editor/AddressableImportSettingsList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/AddressableImportSettingsList.cs -------------------------------------------------------------------------------- /Editor/AddressableImportSettingsList.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/AddressableImportSettingsList.cs.meta -------------------------------------------------------------------------------- /Editor/AddressableImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/AddressableImporter.cs -------------------------------------------------------------------------------- /Editor/AddressableImporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/AddressableImporter.cs.meta -------------------------------------------------------------------------------- /Editor/Attributes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/Attributes.meta -------------------------------------------------------------------------------- /Editor/Attributes/ButtonMethodAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/Attributes/ButtonMethodAttribute.cs -------------------------------------------------------------------------------- /Editor/Attributes/ButtonMethodAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/Attributes/ButtonMethodAttribute.cs.meta -------------------------------------------------------------------------------- /Editor/Attributes/ConditionalFieldAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/Attributes/ConditionalFieldAttribute.cs -------------------------------------------------------------------------------- /Editor/Attributes/ConditionalFieldAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/Attributes/ConditionalFieldAttribute.cs.meta -------------------------------------------------------------------------------- /Editor/Attributes/FoldoutColorGroupAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/Attributes/FoldoutColorGroupAttribute.cs -------------------------------------------------------------------------------- /Editor/Attributes/FoldoutColorGroupAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/Attributes/FoldoutColorGroupAttribute.cs.meta -------------------------------------------------------------------------------- /Editor/Attributes/LabelAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/Attributes/LabelAttribute.cs -------------------------------------------------------------------------------- /Editor/Attributes/LabelAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/Attributes/LabelAttribute.cs.meta -------------------------------------------------------------------------------- /Editor/Helper.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/Helper.meta -------------------------------------------------------------------------------- /Editor/Helper/AddressableImportRuleAttributeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/Helper/AddressableImportRuleAttributeProcessor.cs -------------------------------------------------------------------------------- /Editor/Helper/AddressableImportRuleAttributeProcessor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/Helper/AddressableImportRuleAttributeProcessor.cs.meta -------------------------------------------------------------------------------- /Editor/Helper/AddressableImportSettingsEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/Helper/AddressableImportSettingsEditor.cs -------------------------------------------------------------------------------- /Editor/Helper/AddressableImportSettingsEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/Helper/AddressableImportSettingsEditor.cs.meta -------------------------------------------------------------------------------- /Editor/Helper/AddressableImportSettingsListEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/Helper/AddressableImportSettingsListEditor.cs -------------------------------------------------------------------------------- /Editor/Helper/AddressableImportSettingsListEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/Helper/AddressableImportSettingsListEditor.cs.meta -------------------------------------------------------------------------------- /Editor/Helper/AddressableImporterMethodHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/Helper/AddressableImporterMethodHandler.cs -------------------------------------------------------------------------------- /Editor/Helper/AddressableImporterMethodHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 952a24021e5b4152bf5e54b3081297b1 3 | timeCreated: 1591269066 -------------------------------------------------------------------------------- /Editor/Helper/ScriptableObjectEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/Helper/ScriptableObjectEditor.cs -------------------------------------------------------------------------------- /Editor/Helper/ScriptableObjectEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/Helper/ScriptableObjectEditor.cs.meta -------------------------------------------------------------------------------- /Editor/ISearchFilterable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/ISearchFilterable.cs -------------------------------------------------------------------------------- /Editor/ISearchFilterable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/ISearchFilterable.cs.meta -------------------------------------------------------------------------------- /Editor/Unity.AddressableImporter.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/Unity.AddressableImporter.Editor.asmdef -------------------------------------------------------------------------------- /Editor/Unity.AddressableImporter.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Editor/Unity.AddressableImporter.Editor.asmdef.meta -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/LICENSE.md.meta -------------------------------------------------------------------------------- /Media~/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Media~/icon-128.png -------------------------------------------------------------------------------- /Media~/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Media~/icon-512.png -------------------------------------------------------------------------------- /Media~/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Media~/icon.svg -------------------------------------------------------------------------------- /Media~/ogimage.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Media~/ogimage.psd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/README.md -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/README.md.meta -------------------------------------------------------------------------------- /Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Tests.meta -------------------------------------------------------------------------------- /Tests/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Tests/Editor.meta -------------------------------------------------------------------------------- /Tests/Editor/AddressableImportRuleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Tests/Editor/AddressableImportRuleTests.cs -------------------------------------------------------------------------------- /Tests/Editor/AddressableImportRuleTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Tests/Editor/AddressableImportRuleTests.cs.meta -------------------------------------------------------------------------------- /Tests/Editor/Unity.AddressableImporter.Editor.Tests.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Tests/Editor/Unity.AddressableImporter.Editor.Tests.asmdef -------------------------------------------------------------------------------- /Tests/Editor/Unity.AddressableImporter.Editor.Tests.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/Tests/Editor/Unity.AddressableImporter.Editor.Tests.asmdef.meta -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/package.json -------------------------------------------------------------------------------- /package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favoyang/unity-addressable-importer/HEAD/package.json.meta --------------------------------------------------------------------------------