https://github.com/brenordv/unity-tag-selector
A simple tool to allow associating existing tags with a string property. Can be used with string, string[] or List properties.
https://github.com/brenordv/unity-tag-selector
inspector tool unity unity3d utility utility-classes utility-library utils
Last synced: about 1 month ago
JSON representation
A simple tool to allow associating existing tags with a string property. Can be used with string, string[] or List properties.
- Host: GitHub
- URL: https://github.com/brenordv/unity-tag-selector
- Owner: brenordv
- Created: 2023-03-26T00:31:11.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-03-26T00:39:55.000Z (over 3 years ago)
- Last Synced: 2025-01-20T08:13:07.890Z (over 1 year ago)
- Topics: inspector, tool, unity, unity3d, utility, utility-classes, utility-library, utils
- Language: ShaderLab
- Homepage:
- Size: 11.4 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Unity Tag Selector
A simple tool to allow associating existing tags with a string property. Can be used with string, string[] or List properties.
# Demo
## Code
```csharp
public class TagSelectorDemo : MonoBehaviour
{
[SerializeField, TagSelector] private string singleTag;
[SerializeField, TagSelector] private string[] multipleTagsArray;
[SerializeField, TagSelector] private List multipleTagsList;
}
```
## How it works
