So entfernen Sie Raycast auf einer Schaltfläche Einheit
public class RaycastRemover : MonoBehaviour
{
public TextMeshProUGUI button;
void Start()
{
button.raycastTarget = false;
}
}
Xixika