All Projects → vasyab → UnityPickers

vasyab / UnityPickers

Licence: MIT license
Value selection controls for Unity game engine editor.

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to UnityPickers

GroundGrowing
Open Source Unity3d Planetary Terrain Editor Extension with incremental background updates via multithreading
Stars: ✭ 66 (+94.12%)
Mutual labels:  editor-extension
3den-Enhanced
Official 3den Enhanced repository
Stars: ✭ 36 (+5.88%)
Mutual labels:  editor-extension
hierarchy-icons
Unity extension to show component icons in the Hierarchy.
Stars: ✭ 47 (+38.24%)
Mutual labels:  editor-extension
PrefabEditor
You can edit Prefab which could not be edited much unless you place it on Scene.
Stars: ✭ 23 (-32.35%)
Mutual labels:  editor-extension
UnityEventDrawerEx
This plugin extends the UnityEventDrawer to display runtime calls in the inspector.
Stars: ✭ 57 (+67.65%)
Mutual labels:  editor-extension
Originer
🧳The package for Unity3d which makes it possible to automatically resolve UPM dependencies on projects located on Github
Stars: ✭ 31 (-8.82%)
Mutual labels:  editor-extension
Unity-EventBinder
User Interface Event decoupler
Stars: ✭ 27 (-20.59%)
Mutual labels:  editor-extension
EasyEventEditor
Drop in replacement for the default Unity event editor drawer that allows listener reordering
Stars: ✭ 103 (+202.94%)
Mutual labels:  editor-extension

Unity Pickers

Custom pickers for Unity game engine editor.

Asset Picker

Replacement for default object selection window that shows folders structure and enables filtering by asset path.

Enum Picker

Replacement for default enum selection popup. Allows filtering by value names.

Type Picker

Type selection button for your custom editors.

Features

  • Smart search using multiple strings (space seperated, order matters).
  • All pickers provide API to use in your editors.
  • User-defined filters (in API).
  • Asset Picker is faster than builtin.
  • Asset browsing mode.

Getting Started

Installing

  1. Copy Assets/UnityPickers and Assets/Editor/UnityPickers to your Unity project.
  2. Asset Picker will be instantly enabled for ScriptableObject fields in user-defined types.
  3. You can mark specific field with [AssetPicker] attribute to enable Asset Picker for it.
  4. Enum Picker will be instantly enabled for all user-definded enum fields.

Preview

  1. Open bundled project in Unity (I was using 2017.1.1p4).
  2. Open START_HERE asset in inspector and hit object selection buttons near fields to open Asset Picker.
  3. Click on enum value of Monster Type field to show Enum Picker.
  4. STAR_HERE type is defined in StartHereAsset.cs. Threre are some field attributes.
  5. Select Tools/Asset Picker menu or hit Ctrl+Alt+Shift+O to open Asset Picker in browsing mode.

Motivation

Unity Pickers are part of our toolset for Pathfinder: Kingmaker production. They are addressing following issues:

  • Drag-and-dropping into object fields from Project View becomes less convenient as project grows. Searching for specific object is tiresome.
  • Default object selection window doesn't show folder structure and doesn't allow to filter by folder names. It is crucial to make full use of folders structure when you have many files.
  • Default object selection window becomes incredibly slow on large projects.
  • ObjectPicker API is clumsy :)
  • Default enum selection popup lacks filtering by value names.
  • Our component system and visual scripting tools need control for type selection (similar to 'Add Component' for Game Objects).

Authors

Licence

This code is distributed under the terms and conditions of the MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].