Able
Askowl Base Library Enabler
Commentary.cs
1 using UnityEngine;
2 
3 /// <a href="">Simple Component to add single line notes to the Unity inspector (use Notation for single-line)</a> //#TBD#//
4 [AddComponentMenu("Comments/Single Line")]
5 public class Commentary : MonoBehaviour {
6  /// <a href="">Only for Unity inspector</a> //#TBD#//
7  [SerializeField] public string Comment;
8 }
Simple Component to add single line notes to the Unity inspector (use Notation for single-line) //#TB...
Definition: Commentary.cs:5
string Comment
Only for Unity inspector //#TBD#//
Definition: Commentary.cs:7