SelectableLabelExample.cs 346 B

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