If you use clickable.clicked do you need to manually unsubscribe from it using the -= operator?
button.clickable.clicked += () => Debug.Log("Clicked!");
Or does Unity handle this for us?
In examples from Unity I don’t see the unsubscribing happening. So was wondering if we need to do it