initial commit

This commit is contained in:
cblech
2025-01-04 13:29:07 +01:00
commit 22f67f4347
124 changed files with 12157 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
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;
}
}
}