'Render only certain levels of UI - Unity

Using UGUI, I have a Canvas with frew UI GameObjects inside.

Is there any way to get a render of the lower UI elements of a certain UI element?

I want to try to code a blur system that allows stacking UI elements.

enter image description here



Solution 1:[1]

I would recommend using Layers, which are traditionally used for sorting objects to Render in unity: https://docs.unity3d.com/Manual/Layers.html

You should be able to assign the different objects to layers to control them.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Lilygoat