Search Unity

  1. If you have experience with import & exporting custom (.unitypackage) packages, please help complete a survey (open until May 15, 2024).
    Dismiss Notice
  2. Unity 6 Preview is now available. To find out what's new, have a look at our Unity 6 Preview blog post.
    Dismiss Notice

(GearVR) Make screen black during heavy processing...

Discussion in 'AR/VR (XR) Discussion' started by Thiago-Crawford, Feb 19, 2016.

  1. Thiago-Crawford

    Thiago-Crawford

    Joined:
    Jan 7, 2013
    Posts:
    92
    Hi,

    I need to load some heavy textures from files, and that is all fine, but while this process is carried out, I really need to have a black screen for aesthetics.

    Right now, the VR app will keep tracking head movement, and this will show a flat (frozen) render of the scene until the app regains full control of itself, snapping this flat render back into the eyes (if you know what I mean).

    OVRScreenFade has failed. Switching off the cameras has failed. Placing a UI element infront of the 'eyes' has failed.

    Thanks

    SOLVED:
    Using coroutines and "yield return new WaitForSeconds(1.0f);" before starting the heavy processing.
    It works, but I think I am losing some processing time since I must wait before loading the heavy textures.
     
    Last edited: Feb 22, 2016