GvrIntent
Provides information about the Android Intent that started the current Activity.
Summary
        Public static functions | 
    |
|---|---|
        GetData()
       | 
      
        string
        Returns the string representation of the data URI on which this activity's intent is operating.  
       | 
    
        GetIntentHashCode()
       | 
      
        int
        Returns the hash code of the Java intent object.  
       | 
    
        IsLaunchedFromVr()
       | 
      
        bool
        Checks whether the intent category contains "android.intent.extra.VR_LAUNCH".  
       | 
    
Public static functions
GetData
string GetData()
Returns the string representation of the data URI on which this activity's intent is operating.
See Intent.getDataString() in the Android documentation.
| Details | |
|---|---|
| Returns | 
               The  
            string representation of the data URI on which this activity's intent is operating.  | 
          
GetIntentHashCode
int GetIntentHashCode()
Returns the hash code of the Java intent object.
Useful for discerning whether you have a new intent on un-pause.
| Details | |
|---|---|
| Returns | 
               The hash code of the Java intent object. 
             | 
          
IsLaunchedFromVr
bool IsLaunchedFromVr()
Checks whether the intent category contains "android.intent.extra.VR_LAUNCH".
| Details | |
|---|---|
| Returns | 
               Returns  
            true if the intent category contains "android.intent.extra.VR_LAUNCH", false otherwise.  |