- Odin Inspector 系列教程 --- Property
- Odin Inspector 系列教程 --- Property
- Odin Inspector 系列教程 --- Property
- Odin Inspector 系列教程 --- Property
- Odin Inspector 系列教程 --- 自定义Odin序
- Odin Inspector 系列教程 --- Odin Sta
- Odin Inspector 系列教程 --- RoadMap(
- Odin Inspector 系列教程 --- Foldout
- Odin Inspector 系列教程 --- Vertical
- Odin Inspector 系列教程 --- Responsi
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()
{
// ...
}
}
网友评论