1234567891011121314151617181920212223242526 |
- namespace textUtility
- {
- using System.Collections;
- using System.Collections.Generic;
-
- using UnityEngine;
-
- public class UnderlineMatch : SegmentMatch
- {
- #region Config
- public UnderlineSetting UnderlineSetting;
- public List<List<List<Vector3>>> EllipsePositionsList = new List<List<List<Vector3>>>();
- #endregion
- // public UnderlineMatch(RichText richText, MatchData matchData) : base(matchData)
- // {
- //}
- }
- }
|