A lot of stuff to Commit because I forgot to Commit in between (Don't do stuff like this, kids)

This commit is contained in:
cblech
2025-01-05 13:47:14 +01:00
parent 03d130cde6
commit 8c961cbf2d
87 changed files with 22246 additions and 42 deletions
+5 -1
View File
@@ -8,13 +8,17 @@ public class MyButton : MonoBehaviour, IPointerClickHandler, IPointerEnterHandle
[SerializeField]
private UnityEvent _onClick;
// references
[SerializeField]
private OutlineFx.OutlineFx _outlineFx;
[SerializeField]
public bool isActive = true;
public void SetActive(bool active)
{
isActive = active;
}
private void OnEnable()
{