- Home /
VR "Hold" Screen for gallery Instal
Hello All,
I have a VR piece in a gallery installation. It's using an Oculus with the display on a large monitor.
When nobody uses it, the screen goes blank and I am wondering whether I can have a new scene (splash screen) play when nothing happens for 30 seconds.
In then, in the "splash screen" scene, when the user picks up anything, it would trigger the "Main scene" ?
Forgive my Pseudo code, but :
void OVRInput.FixedUpdate()
{
if (nothing happens for 30 seconds)
{
application.LoadLevel(splashScreen);
}
}
And then if the user pick up the controllers/ head set :
void OVRInput.FixedUpdate()
{
if(anything happens)
{
application.LoadLevel(Main);
}
}
Does this seem right?
Thanks for your help
~be
BUT
The problem would be if it is a normal VR Piece it will not look like anything when the user removes the H$$anonymous$$D as it's not looking at the ground and away from action
Is there a way I could turn on / off the VR $$anonymous$$ode earn the H$$anonymous$$D is not engaged ?
This might be a super elegant solution
Thanks for your help!