You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Jeremy/Assets/Outline/Runtime/OutlineFx.cs

23 lines
453 B

using UnityEngine;
// OutlineFx © NullTale - https://x.com/NullTale/
namespace OutlineFx
{
[ExecuteAlways]
public class OutlineFx : Outline
{
public Color _color = Color.white;
public override Color Color
{
get => _color;
set => _color = value;
}
public float Alpha
{
get => _color.a;
set => _color.a = value;
}
}
}