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

TMP_InputValidator.cs 387B

123456789101112131415
  1. using UnityEngine;
  2. using System.Collections;
  3. namespace TMPro
  4. {
  5. /// <summary>
  6. /// Custom text input validator where user can implement their own custom character validation.
  7. /// </summary>
  8. [System.Serializable]
  9. public abstract class TMP_InputValidator : ScriptableObject
  10. {
  11. public abstract char Validate(ref string text, ref int pos, char ch);
  12. }
  13. }