How to apply rounded corners to content inside a WidgetSwitcher?

Hello everyone,

I’m working with UMG in Unreal Engine 5.5, and I need to make a clipping mask that applies rounded corners to child widgets inside a WidgetSwitcher.

I’ve tried wrapping the WidgetSwitcher inside a Border widget and setting its corner radius and clip to bounds. However, the corner radius doesn’t clip anything except the Border itself.

I want the child widgets inside the WidgetSwitcher to be clipped and rounded within the bounds of the WidgetSwitcher.

Has anyone been able to achieve this? Can you please share the steps on how to make it real?

Thank you in advance for your help!

Hey @OffbeatRaptor44

You have various approach on this.
The easy one is to do a size box to clip the bounds of the children.


If you want more control of this you may want to split the round shape to images
And add children in the rectangle children.

This is not what I need.

I did try your method, and it didn’t work as I want it to be. It just limited the size of my child widgets and added one more background layer, which is not what I want.

I need the child widgets inside the WidgetSwitcher to be force rounded, without modifying their content. In short, is there any way for the clipping to make rounded corners?