Custom SO Icons - simple editor addon that allows to show custom scriptable object icons in the Project view
My Telegram channel if you want more
This addon speeds up the interaction with the editor by x100 times - you no longer have to look at the names when you look for an object, because you can simply display the icon directly on the asset.
You can change scale of icon, and set background if needed.
Also, if you have the Odin Inspector installed in your project, the icons will be displayed in any other fields of the inspector view. No additional settings are needed.
- Unity 2020 and above
Not necessary:
- Odin Inspector - only for display SO icons in inspector fields
Go to Package Manager
-> Add package from GIT url...
-> Enter https://github.com/ligofff/SimpleTools-CustomSOIcons.git
-> Click Add
You will need to have Git installed and available in your system's PATH.
You have 3 ways to declare which icon to use for display.
Fisrst way - Simply mark any Sprite
field or property in your SO class as [CustomAssetIcon]
Second way - If you want to assign icon to read-only class that you cannot change, you can create another class anywhere inside your project, inherit it from the ICustomEditorIconDeclarator
, and get an icon.
Third way - For classes that you just want to assign an icon that won't change depending on the content, you can add override option in addon settings, which are in Assets/Resources
That's all! I'd appreciate it if you'd leave a star on the github.
MIT License
Copyright (c) 2023 Ligofff
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.