Como remover Raycast em uma unidade de botão
public class RaycastRemover : MonoBehaviour
{
public TextMeshProUGUI button;
void Start()
{
button.raycastTarget = false;
}
}
Xixika