├── .github └── FUNDING.yml ├── CHANGELOG.md ├── CHANGELOG.md.meta ├── Editor.meta ├── Editor ├── Addressables.meta ├── Addressables │ ├── AddressableEntryFinder.cs │ ├── AddressableEntryFinder.cs.meta │ ├── AddressableUtils.cs │ └── AddressableUtils.cs.meta ├── ObjectFinder.meta ├── ObjectFinder │ ├── AssetFileResult.cs │ ├── AssetFileResult.cs.meta │ ├── AssetRenameDetector.cs │ ├── AssetRenameDetector.cs.meta │ ├── ConfigFinder.cs │ ├── ConfigFinder.cs.meta │ ├── DropdownOption.cs │ ├── DropdownOption.cs.meta │ ├── FolderObjectFinder.cs │ ├── FolderObjectFinder.cs.meta │ ├── ObjectFinder.cs │ ├── ObjectFinder.cs.meta │ ├── ObjectFinderFactory.cs │ ├── ObjectFinderFactory.cs.meta │ ├── ScriptableContainerFinder.cs │ ├── ScriptableContainerFinder.cs.meta │ ├── ScriptableGroupFinder.cs │ └── ScriptableGroupFinder.cs.meta ├── PhEngine.QuickDropdown.Editor.asmdef ├── PhEngine.QuickDropdown.Editor.asmdef.meta ├── PropertyDrawer.meta ├── PropertyDrawer │ ├── DropdownFieldDrawer.cs │ ├── DropdownFieldDrawer.cs.meta │ ├── FieldUtils.cs │ └── FieldUtils.cs.meta ├── Utility.meta └── Utility │ ├── AssetUtils.cs │ ├── AssetUtils.cs.meta │ ├── IconUtils.cs │ └── IconUtils.cs.meta ├── LICENSE ├── LICENSE.meta ├── PhEngine.QuickDropdown.asmdef ├── PhEngine.QuickDropdown.asmdef.meta ├── README.md ├── README.md.meta ├── Runtime.meta ├── Runtime ├── Addressables.meta ├── Addressables │ ├── FromAddressable.cs │ └── FromAddressable.cs.meta ├── DropdownField.cs ├── DropdownField.cs.meta ├── FromConfig.cs ├── FromConfig.cs.meta ├── FromFolder.cs ├── FromFolder.cs.meta ├── FromGroup.cs ├── FromGroup.cs.meta ├── ScriptableContainer.cs ├── ScriptableContainer.cs.meta ├── ScriptableGroup.cs └── ScriptableGroup.cs.meta ├── Samples.meta ├── Samples ├── AddressableDropdownExample.cs ├── AddressableDropdownExample.cs.meta ├── ElementConfig.cs ├── ElementConfig.cs.meta ├── QuickDropdownExample.cs ├── QuickDropdownExample.cs.meta ├── SampleConfig.cs └── SampleConfig.cs.meta ├── package.json └── package.json.meta /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/CHANGELOG.md.meta -------------------------------------------------------------------------------- /Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor.meta -------------------------------------------------------------------------------- /Editor/Addressables.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c88209f8b8ac4fe9b60a572793c89adf 3 | timeCreated: 1741728699 -------------------------------------------------------------------------------- /Editor/Addressables/AddressableEntryFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/Addressables/AddressableEntryFinder.cs -------------------------------------------------------------------------------- /Editor/Addressables/AddressableEntryFinder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 734287c7904141318865e7de67636e15 3 | timeCreated: 1741891421 -------------------------------------------------------------------------------- /Editor/Addressables/AddressableUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/Addressables/AddressableUtils.cs -------------------------------------------------------------------------------- /Editor/Addressables/AddressableUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff1ba1bd12e64cb6b9f22af45e145e76 3 | timeCreated: 1741728713 -------------------------------------------------------------------------------- /Editor/ObjectFinder.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/ObjectFinder.meta -------------------------------------------------------------------------------- /Editor/ObjectFinder/AssetFileResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/ObjectFinder/AssetFileResult.cs -------------------------------------------------------------------------------- /Editor/ObjectFinder/AssetFileResult.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/ObjectFinder/AssetFileResult.cs.meta -------------------------------------------------------------------------------- /Editor/ObjectFinder/AssetRenameDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/ObjectFinder/AssetRenameDetector.cs -------------------------------------------------------------------------------- /Editor/ObjectFinder/AssetRenameDetector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/ObjectFinder/AssetRenameDetector.cs.meta -------------------------------------------------------------------------------- /Editor/ObjectFinder/ConfigFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/ObjectFinder/ConfigFinder.cs -------------------------------------------------------------------------------- /Editor/ObjectFinder/ConfigFinder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aefbf68e4c8e4e13b10c4934e9401d0b 3 | timeCreated: 1741553766 -------------------------------------------------------------------------------- /Editor/ObjectFinder/DropdownOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/ObjectFinder/DropdownOption.cs -------------------------------------------------------------------------------- /Editor/ObjectFinder/DropdownOption.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/ObjectFinder/DropdownOption.cs.meta -------------------------------------------------------------------------------- /Editor/ObjectFinder/FolderObjectFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/ObjectFinder/FolderObjectFinder.cs -------------------------------------------------------------------------------- /Editor/ObjectFinder/FolderObjectFinder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/ObjectFinder/FolderObjectFinder.cs.meta -------------------------------------------------------------------------------- /Editor/ObjectFinder/ObjectFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/ObjectFinder/ObjectFinder.cs -------------------------------------------------------------------------------- /Editor/ObjectFinder/ObjectFinder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/ObjectFinder/ObjectFinder.cs.meta -------------------------------------------------------------------------------- /Editor/ObjectFinder/ObjectFinderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/ObjectFinder/ObjectFinderFactory.cs -------------------------------------------------------------------------------- /Editor/ObjectFinder/ObjectFinderFactory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/ObjectFinder/ObjectFinderFactory.cs.meta -------------------------------------------------------------------------------- /Editor/ObjectFinder/ScriptableContainerFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/ObjectFinder/ScriptableContainerFinder.cs -------------------------------------------------------------------------------- /Editor/ObjectFinder/ScriptableContainerFinder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/ObjectFinder/ScriptableContainerFinder.cs.meta -------------------------------------------------------------------------------- /Editor/ObjectFinder/ScriptableGroupFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/ObjectFinder/ScriptableGroupFinder.cs -------------------------------------------------------------------------------- /Editor/ObjectFinder/ScriptableGroupFinder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eec0cee857d443f9945f8cf00340c94a 3 | timeCreated: 1741558235 -------------------------------------------------------------------------------- /Editor/PhEngine.QuickDropdown.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/PhEngine.QuickDropdown.Editor.asmdef -------------------------------------------------------------------------------- /Editor/PhEngine.QuickDropdown.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e4af0773b2248de8f589bbb7b534d4f 3 | timeCreated: 1741893467 -------------------------------------------------------------------------------- /Editor/PropertyDrawer.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/PropertyDrawer.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawer/DropdownFieldDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/PropertyDrawer/DropdownFieldDrawer.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawer/DropdownFieldDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/PropertyDrawer/DropdownFieldDrawer.cs.meta -------------------------------------------------------------------------------- /Editor/PropertyDrawer/FieldUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/PropertyDrawer/FieldUtils.cs -------------------------------------------------------------------------------- /Editor/PropertyDrawer/FieldUtils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/PropertyDrawer/FieldUtils.cs.meta -------------------------------------------------------------------------------- /Editor/Utility.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/Utility.meta -------------------------------------------------------------------------------- /Editor/Utility/AssetUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/Utility/AssetUtils.cs -------------------------------------------------------------------------------- /Editor/Utility/AssetUtils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/Utility/AssetUtils.cs.meta -------------------------------------------------------------------------------- /Editor/Utility/IconUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/Utility/IconUtils.cs -------------------------------------------------------------------------------- /Editor/Utility/IconUtils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Editor/Utility/IconUtils.cs.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/LICENSE.meta -------------------------------------------------------------------------------- /PhEngine.QuickDropdown.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/PhEngine.QuickDropdown.asmdef -------------------------------------------------------------------------------- /PhEngine.QuickDropdown.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e2df7d594b84fc2bd4ff8633277f4b0 3 | timeCreated: 1741893443 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/README.md -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/README.md.meta -------------------------------------------------------------------------------- /Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Runtime.meta -------------------------------------------------------------------------------- /Runtime/Addressables.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef367a6cb49543e38214b57c1f7149e2 3 | timeCreated: 1741729146 -------------------------------------------------------------------------------- /Runtime/Addressables/FromAddressable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Runtime/Addressables/FromAddressable.cs -------------------------------------------------------------------------------- /Runtime/Addressables/FromAddressable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d44ed489feb4bb0aec18aea13fa95f0 3 | timeCreated: 1741729188 -------------------------------------------------------------------------------- /Runtime/DropdownField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Runtime/DropdownField.cs -------------------------------------------------------------------------------- /Runtime/DropdownField.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Runtime/DropdownField.cs.meta -------------------------------------------------------------------------------- /Runtime/FromConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Runtime/FromConfig.cs -------------------------------------------------------------------------------- /Runtime/FromConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac15127a88e24141844ce59d761098d6 3 | timeCreated: 1741554998 -------------------------------------------------------------------------------- /Runtime/FromFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Runtime/FromFolder.cs -------------------------------------------------------------------------------- /Runtime/FromFolder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Runtime/FromFolder.cs.meta -------------------------------------------------------------------------------- /Runtime/FromGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Runtime/FromGroup.cs -------------------------------------------------------------------------------- /Runtime/FromGroup.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Runtime/FromGroup.cs.meta -------------------------------------------------------------------------------- /Runtime/ScriptableContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Runtime/ScriptableContainer.cs -------------------------------------------------------------------------------- /Runtime/ScriptableContainer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 084d862a4da3422cbcde0c286c8ad155 3 | timeCreated: 1741557578 -------------------------------------------------------------------------------- /Runtime/ScriptableGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Runtime/ScriptableGroup.cs -------------------------------------------------------------------------------- /Runtime/ScriptableGroup.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Runtime/ScriptableGroup.cs.meta -------------------------------------------------------------------------------- /Samples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Samples.meta -------------------------------------------------------------------------------- /Samples/AddressableDropdownExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Samples/AddressableDropdownExample.cs -------------------------------------------------------------------------------- /Samples/AddressableDropdownExample.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6db60443181448afafc2365dff766c30 3 | timeCreated: 1741896920 -------------------------------------------------------------------------------- /Samples/ElementConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Samples/ElementConfig.cs -------------------------------------------------------------------------------- /Samples/ElementConfig.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Samples/ElementConfig.cs.meta -------------------------------------------------------------------------------- /Samples/QuickDropdownExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Samples/QuickDropdownExample.cs -------------------------------------------------------------------------------- /Samples/QuickDropdownExample.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Samples/QuickDropdownExample.cs.meta -------------------------------------------------------------------------------- /Samples/SampleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/Samples/SampleConfig.cs -------------------------------------------------------------------------------- /Samples/SampleConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d6112df5ae34ec7ac755d431d5b1205 3 | timeCreated: 1741560840 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/package.json -------------------------------------------------------------------------------- /package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanphantz/Unity-Quick-Dropdown/HEAD/package.json.meta --------------------------------------------------------------------------------