UnderlineMatch.cs 461 B

1234567891011121314151617181920212223242526
  1. namespace textUtility
  2. {
  3. using System.Collections;
  4. using System.Collections.Generic;
  5. using UnityEngine;
  6. public class UnderlineMatch : SegmentMatch
  7. {
  8. #region Config
  9. public UnderlineSetting UnderlineSetting;
  10. public List<List<List<Vector3>>> EllipsePositionsList = new List<List<List<Vector3>>>();
  11. #endregion
  12. // public UnderlineMatch(RichText richText, MatchData matchData) : base(matchData)
  13. // {
  14. //}
  15. }
  16. }