首页 > 编程语言 > 详细

Unity Inspector 绘制备注信息 多语言辅助

时间:2021-07-10 16:00:34      阅读:17      评论:0      收藏:0      [点我收藏+]

属性

using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

[AttributeUsage(AttributeTargets.Field, Inherited = true)]
public class LanguageLabelAttribute : PropertyAttribute {
}

 

绘制

using System.Collections;
using System.Collections.Generic;
using UnityEditor;
using UnityEngine;

[CustomPropertyDrawer(typeof(LanguageLabelAttribute))]
public class LanguageLabelPropertyDrawer : PropertyDrawer {
    private static readonly string errorLanguageKeyTips = "语言表 Key 不存在";

    public override void OnGUI(Rect position, SerializedProperty property, GUIContent label) {
        var key = property.stringValue;

        //var content = !LanguageConfig.Has(key) ? errorLanguageKeyTips : Language.Get(key);
        var content = "哈哈哈";

        var propertyWidth = position.width / 4 * 3;
        var singleWidth = position.width / 4;

        EditorGUI.BeginProperty(position, label, property);
        var rect = new Rect(position.x, position.y, propertyWidth, position.height);
        EditorGUI.PropertyField(rect, property);
        EditorGUI.EndProperty();

        rect = new Rect(rect.xMax, rect.y, singleWidth, rect.height);
        using (new EditorGUI.DisabledScope(true)) {
            EditorGUI.TextField(rect, content);
        }
    }
}

 

使用

    [LanguageLabelAttribute]
    public string str;

效果

技术分享图片

 

Unity Inspector 绘制备注信息 多语言辅助

原文:https://www.cnblogs.com/sanyejun/p/14993709.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!