Skip to content

A simple tool to allow associating existing tags with a string property. Can be used with string, string[] or List properties.

Notifications You must be signed in to change notification settings

brenordv/unity-tag-selector

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

public class TagSelectorDemo : MonoBehaviour
{
    [SerializeField, TagSelector] private string singleTag;
    [SerializeField, TagSelector] private string[] multipleTagsArray;
    [SerializeField, TagSelector] private List<string> multipleTagsList;
}

How it works

Demo

About

A simple tool to allow associating existing tags with a string property. Can be used with string, string[] or List properties.

Topics

Resources

Stars

Watchers

Forks