Highlight Property Drawer - Simply sets the text/background colour of a field in the inspector.

May 3, 2018 ยท View on GitHub

// Do NOT put me in an /Editor/ folder // Questions/bugs: chris@vitei.com

using UnityEngine;

public class HighlightAttribute : PropertyAttribute { public Color col;

public HighlightAttribute(float r=1, float g=0, float b=0) {
    this.col = new Color(r,g,b,1);
}

}