Skip to content

Tag Popup

[TagPopup] attribute allows to select tag via convenient dropdown list.


Support Types

  • String

Parameters

No parameters


Examples

[TagPopup]
public string tag;
Note
  1. Make sure that you have added ApexInspector namespace in your script, to get access to all attributes.
    using ApexInspector;
    

Demo

using ApexInspector;
using UnityEngine;

public class ExampleComponent : MonoBehaviour
{
    [TagPopup]
    public string value;
}

Live-demo

Live demo