- Odin Inspector 系列教程 --- Type Inf
- Odin Inspector 系列教程 --- Type Fil
- Odin Inspector 系列教程 --- 自定义Odin序
- Odin Inspector 系列教程 --- Odin Sta
- Odin Inspector 系列教程 --- RoadMap(
- Odin Inspector 系列教程 --- Foldout
- Odin Inspector 系列教程 --- Vertical
- Odin Inspector 系列教程 --- Responsi
- Odin Inspector 系列教程 --- Preview
- Odin Inspector 系列教程 --- Horizont
TypeInfoBox特性:将信息框添加到Inspector中类型的最顶部。
使用此选项可将信息框添加到Inspector中类的顶部,而无需同时使用PropertyOrder和OnInspectorGUI属性。
image
完整示例代码
TypeInfoBoxExample
using Sirenix.OdinInspector;
using System;
using UnityEngine;
public class TypeInfoBoxExample : MonoBehaviour
{
public MyType MyObject = new MyType();
[InfoBox("双击此此段的value值,可在inspecter中查看对应ScriptableObject信息")]
public MyScripty Scripty = null;
public void Awake()
{
Scripty = ExampleHelper.GetScriptableObject<MyScripty>();
}
[Serializable]
[TypeInfoBox("TypeInfoBox特性可以放在类型定义上,并将导致在属性的顶端处绘制一个InfoBox。")]
public class MyType
{
public int Value;
}
}
MyScripty
using Sirenix.OdinInspector;
using UnityEngine;
[CreateAssetMenu(fileName = "MyScripty_ScriptableObject", menuName = "CreatScriptableObject/MyScripty", order = 100)]
[TypeInfoBox("TypeInfoBox 特性 能以文本的形式显示在顶端 。例如, MonoBehaviours or ScriptableObjects.")]
public class MyScripty : ScriptableObject
{
public string MyText = ExampleHelper.GetString();
[TextArea(10, 15)]
public string Box;
}








网友评论