Hello, so I have a Camera that displays all of the HUD in the layer "UI."
I have another layer labeled "Pause." This layer becomes active on Android when "OnApplicationPause" is triggered to be true, aka when the player resumes the app from a paused state (after receiving a phone call, re-opening from the menu bar etc). I need everything displayed in the "Pause" layer to cover up anything visible in the UI layer (aka visibly display the pause layer in front of all other layers). Currently the pause layer does display but it's set at the same visible level as the UI layer, so both of the layers show up together. This is because the camera displaying the UI layer was already active when the application entered it's paused state, as it should be. And of course the camera I'm using to display the "Pause" layer will ONLY see what is in the "Pause" layer, so this is not an error on my end, I'm simply trying to adjust the visibility of layers.
In short, does anyone have a solution to ensure the pause layer will always be shown in front of all other layers?
Thanks!