README.md 654 B

SelectableLabel

選択できるラベルを表示します。

###引数

変数 説明
text 追加する文字列

###使い方

using UnityEngine;


public class SelectableLabelExample : MonoBehaviour
{
    [SelectableLabel("ラベルを選択できるようになります\n" +
                     "\thttps://github.com/anchan828/property-drawer-collection\n" +
                     "\t\tこのようにURLをコピペするときに便利")]
    public string hoge;
}