Panel2 Scroll Rect only has Vertical move so you can go up and down. when I move horizontally it ignores Panel1 Horizontal movements. So I can ones move Horizontaly and Panel 2 got focus. and I Cant Go back to Panel1.
Also
The Question Asked before Here
I haven’t found anything in this form too
Here’s my take on the solution by @CaptainSchnittchen. I wanted to get rid of the upwards traversal of the hierarchy, as our project will run on mobile devices with limited processing power. So i got rid of that by letting the developer assign up to 1 ScrollRect as parent, and delegate the event as the original solution, but without using the System.Action delegate pattern (in order to avoid garbage generation). My solution consists of 2 files, the ScrollRectNested component and the ScrollRectNestedEditor editor class. The editor is needed as I’m adding a new property and the standard ScrollRectEditor wont draw it by default.