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/OutlineBlocker.cs

20 lines
430 B

using UnityEngine;
// OutlineFx © NullTale - https://x.com/NullTale/
namespace OutlineFx
{
[DefaultExecutionOrder(10000)]
public class OutlineBlocker : Outline
{
private static Color s_color = new Color(0, 0, 0, 7f / 255f);
public override Color Color
{
get => new Color(0, 0, 0, 14f / 255f);
set
{
// pass
}
}
}
}