Hi, @BorisCallens,
It is possible to create a child scene component in your main scene, which allows you to reference another scene (where you have your UI set up). In the main scene’s settings you will also have to add a “Render Child Scene” renderer, possibly after your Clear Renderframe and Render Camera renderers. You might also want to add another Clear Render frame between them and set it to clear only the depth, so avoid clipping and pop-ups.
In short:
- Create two scenes, Main and UI. Set up your world in Main and your UI components in UI.
- In your Main scene create a new Entity with the Child scene component. Select the UI scene as a reference.
- In your Main scene’s Scene settings, add a new renderer in Renderers, after Clear Frame and Render Camera. Make the new renderer Render Child Scene and pick up the entity you created in 2.
Please note that this process might change in the future. We want to simplify it a bit, but for now this is how it can be done.