If Button collides with another Button in Widget

I cant find the right Node for if a Button in a Scroll Box reaches a desired Position(x,y) in the canvas Panel in the Widget.

The other thing that could help is the Node for: if a Button collides or touches another Button,Border,Image etc. in the Widget.

So basically a OnComponentHit but for Buttons in a Widget.
Hope somebody helps :slight_smile:

I don’t think the UMG classes have collision of any kind. You need to basically treat this stuff like HTML/JS/CSS and handle the layouts yourself. For example, to detect whether two widgets are overlapping, you can get their positions and sizes then do your own math…

Best bet is to use copious amounts of layout controls, horizontal panels, vertical panels, grids, size boxes, scale boxes, etc., etc. to lay everything out.