暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ITextPreProcessor.cs 429B

1234567891011121314151617
  1. 
  2. namespace TMPro
  3. {
  4. /// <summary>
  5. /// Interface used for preprocessing and shaping of text.
  6. /// </summary>
  7. public interface ITextPreprocessor
  8. {
  9. /// <summary>
  10. /// Function used for preprocessing of text
  11. /// </summary>
  12. /// <param name="text">Source text to be processed</param>
  13. /// <returns>Processed text</returns>
  14. string PreprocessText(string text);
  15. }
  16. }