Is there any easy way to pop a transprent UI window while background is still rendering?
My faulty tries goes fullscreen when I call SetView for my new UI and disables rendering of everything behind.
Any advice would be appreciated.
NewUI and SetView
Re: NewUI and SetView
Generally no. You might look at robn/new-ui-everywhere for ideas for how to overlay the new UI onto the old view system. But mostly the answer is "wait until everything is converted to new UI". Then you'll be able to do whatever you like.
Re: NewUI and SetView
Well, there isn't anything "behind" - a View (which is old UI stuff and UiView is a transitional wrapper) is responsible for rendering the 3d scene too.shadmar wrote:My faulty tries goes fullscreen when I call SetView for my new UI and disables rendering of everything behind.