Comments.cs 311 B

1234567891011121314151617
  1. using UnityEngine;
  2. using System.Collections;
  3. namespace RootMotion {
  4. /// <summary>
  5. /// Adding comments to GameObjects in the Inspector.
  6. /// </summary>
  7. public class Comments : MonoBehaviour {
  8. /// <summary>
  9. /// The comment.
  10. /// </summary>
  11. [Multiline]
  12. public string text;
  13. }
  14. }