Page 1 of 1

NewUI and SetView

Posted: Fri Jul 12, 2013 6:18 pm
by shadmar
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.

Re: NewUI and SetView

Posted: Sat Jul 13, 2013 12:22 am
by robn
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

Posted: Sat Jul 13, 2013 12:35 am
by Luomu
shadmar wrote:My faulty tries goes fullscreen when I call SetView for my new UI and disables rendering of everything behind.
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.

Re: NewUI and SetView

Posted: Sat Jul 13, 2013 7:03 pm
by shadmar
Thanks!