An open API service indexing awesome lists of open source software.

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.

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
![Demo](./readme_imgs/demo.gif)