Search Unity

Splash screen for DK2

Discussion in 'AR/VR (XR) Discussion' started by Pulov, Jan 4, 2015.

  1. Pulov

    Pulov

    Joined:
    Feb 20, 2010
    Posts:
    824
    Hi.

    I found this script that works great for single camera but I'm unable to use it in the dk2.

    http://wiki.unity3d.com/index.php/SplashScreen

    The issue is because there are multiple cams and I do not know how to tell the script to make the magic happen in both cams.

    Some help would be very welcomed.:confused:
     
  2. virror

    virror

    Joined:
    Feb 3, 2012
    Posts:
    2,963
    Its a bit tricky to use with the Rift since it uses the old GUI system, you probably have to modify it to use the new UI system and then put it in world space. Should not be to hard since mostly its just modifies some alpha values over time.
     
  3. Pulov

    Pulov

    Joined:
    Feb 20, 2010
    Posts:
    824
    I did it the dirty way. Generated a plane in 3D space with the image of the splash and made the code load the scene.

    Even if I used the
    LoadLevelAsync
    to load in background, when loading the scene the motion tracking did freeze, so ended up loading the level directly without splash as it is just a showcase demo.

    I've almost 0 programing skills have to say...