はじめに
https://gist.github.com/LotteMakesStuff/2d3c6dc7a913ed118601db95735574de
「HighlightAttribute」は Inspector の項目をハイライト表示する PropertyAttribute です
使用例
using UnityEngine; public class Example : MonoBehaviour { [Highlight( HighlightColor.Red )] public int id; [Highlight( HighlightColor.Yellow )] public string name; }