12 lines
249 B
C#
12 lines
249 B
C#
using UnityEngine;
|
|
|
|
public class FPD_HorizontalLineAttribute : PropertyAttribute
|
|
{
|
|
public Color color;
|
|
|
|
public FPD_HorizontalLineAttribute(float r = 0.55f, float g = 0.55f, float b = 0.55f, float a = 0.7f)
|
|
{
|
|
color = new Color(r, g, b, a);
|
|
}
|
|
}
|