struct
AssetTags
public sealed struct AssetTags Represents a collection of tags for an asset. This is only necessary so we can save tags as soon as they are added.
Methods
Void Add(String tag) Add a single tag.
Void Add(String[] in_tags) Add multiple tags at once.
Void Remove(String tag) Remove given tag from the asset.
Void Toggle(String tag) Remove the tag if present, add if not.
Void Set(String tag, Boolean set) Set or remove the tag based on second argument.
Boolean Contains(String tag) Returns whether this asset has given tag.
String[] GetAll() Returns all tags of this asset.
virtual IEnumerator<String> GetEnumerator()