Esempio n. 1
0
 //This will launch the platform application when the Oculus Home button is pressed instead of displaying the Quit/Resume dialog
 void OnApplicationPause(bool isPaused)
 {
     if (isPaused && OVRPlugin.userPresent && !NativeDeepLinkController.LaunchingOtherApp)
     {
         AlcoveDeepLinkController.DeepLinkToApplication(AlcoveGoAppId, AlcovePackageName, "AppReturn: " + Application.productName);
     }
 }
Esempio n. 2
0
 public static void ReturnNow(string extraData = null, string multiplayerRoomId = null)
 {
     AlcoveDeepLinkController.DeepLinkToApplication(AlcoveGoAppId, Application.identifier, extraData, multiplayerRoomId);
 }
Esempio n. 3
0
 void OnApplicationQuit()
 {
     AlcoveDeepLinkController.DeepLinkToApplication(AlcoveGoAppId, AlcovePackageName, "AppReturn: " + Application.productName);
 }