让Unity的Inspector面板支持字符限制(restrict)功能

今天在优化红点组件,笔者打算将红点id由10进制改为16进制处理,就打算将红点id字段由uint类型改成string类型,用于填写16进制的字符(因为在Inspector面板里,uint/int类型字段不能直接填写16进制表示的数字),且希望限制该字段的输入限制,仅限于填写0-9A-Fa-f等16进制字符串,但unity并没有提供任何PropertyAttribute类来限制字符输入,达到类似于as3 text组件的restrict效果。因此笔者自定义了一个RestrictAttribute类,用于实现字符限制效果。

    /* ==============================================================================
     * 功能描述:限制string字段的输入类型
     * 创 建 者:shuchangliu
     * ==============================================================================*/

    using System.Text.RegularExpressions;
    using UnityEngine;
    #if UNITY_EDITOR
    using UnityEditor;
    #endif

    public class RestrictAttribute : PropertyAttribute
    {
        public string restrict;
        // Use this for initialization
        public RestrictAttribute(string restrict)
        {
            this.restrict = restrict;
        }
    }

    #if UNITY_EDITOR
    [CustomPropertyDrawer(typeof(RestrictAttribute))]
    public class RestrictDrawer : PropertyDrawer
    {
        public override float GetPropertyHeight(SerializedProperty property,
                                                GUIContent label)
        {
            return EditorGUI.GetPropertyHeight(property, label, true);
        }

        public override void OnGUI(Rect position,
                                   SerializedProperty property,
                                   GUIContent label)
        {
            RestrictAttribute a = attribute as RestrictAttribute;

            EditorGUI.PropertyField(position, property, label, true);
            string v = property.stringValue;
            v = Regex.Replace(v, @"[^" + a.restrict + "]*", "");
            property.stringValue = v;
        }

    }
    #endif

    public class Test : MonoBehaviour
    {
        [Restrict("0-9a-fA-F")]
        public string pid;
    }

在字段前加上[Restrict(string str)]参数,pid就只可以输入16进制数字(0-9及a-f的大小英文)了

转载于:https://www.cnblogs.com/leoin2012/p/6846999.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值