NaughtyAttributes
NaughtyAttributes copied to clipboard
[Request] Colouring variables in the inspector
This is a "nice to have" and I'm not sure if this is possible with other tools, but it'd be great if I could somehow colour variables for the inspector either via rgb or hex values:
public class NaughtyComponent : MonoBehaviour {
[Color("#123456")]
public string thisIsAVariable;
[Color("255,0,102")]
public Vector3 vectorXYZ;
}
would make:
(there's a tool I use that colours the transform values similarly, it colours the field not just the variable's name, but that's also fine)
Thank you for your consideration.