美文网首页
Odin Inspector 系列教程 --- Property

Odin Inspector 系列教程 --- Property

作者: su9257_海澜 | 来源:发表于2019-10-09 09:59 被阅读0次

Property Tooltip Attribute:可用于任何属性,并在将属性悬停在检查器中时创建工具提示。用它来解释目的或如何使用属性。

using Sirenix.OdinInspector;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class PropertyTooltipAttributeExample : MonoBehaviour
{
    [PropertyTooltip("放在属性上显示对应的悬停提示.")]
    public int MyInt;

    [InfoBox("使用$引用成员字符串.")]
    [PropertyTooltip("$Tooltip")]
    public string Tooltip = "Dynamic tooltip.";

    [Button, PropertyTooltip("Button Tooltip")]
    private void ButtonWithTooltip()
    {
        // ...
    }
}


更多教程内容详见:革命性Unity 编辑器扩展工具 --- Odin Inspector 系列教程

相关文章

网友评论

      本文标题:Odin Inspector 系列教程 --- Property

      本文链接:https://www.haomeiwen.com/subject/emxipctx.html