Make Panel unclickable

Hello!
I’ve an Info Dialog(Panel) in my Shop. Now I want the panel behind them to be not clickable.
How to do that?

Image Components have a Raycast Target toggle box.

Button Components have an Interactable toggle box.

The Thing is, I am using the same panel for all shop entrees. So I habe to call the interactible Component of maybe 30 Buttons. Is there any other possibility to do this?

Put a transparent panel over all of the buttons to block raycasts, or use a script on each button that listens to an event which toggles them off.

1 Like

Okay thank you.