BackgroundColor
Changes the background color of a property. If the property already has a background color, it will be replaced.
Applied on Properties

[BackgroundColor(0.2f, 0.2f, 0.3f)]
public int testWithBackgroundColor;[BackgroundColor(float r,float g,float b)]r: The red component of the background color, ranging from 0 to 1.
g: The green component of the background color, ranging from 0 to 1.
b: The blue component of the background color, ranging from 0 to 1.
Last updated