AI-generated Key Takeaways
-
The
Propertiesclass provides access to information about the current state of Google VR properties. -
This class includes nested classes to define property types, safety regions, and tracking status flags.
-
The
getmethod allows retrieving the value of a specific property using its key. -
The object remains valid as long as the associated Google VR context is active.
Contains information about current properties. This object will remain valid until the GVR context (wrapped by GvrApi) is destroyed.
Note that not every property type listed in gvr_types.h is supported here. The omitted ones aren't yet used by GVR and will be added to this class as needed.
Nested Classes
| class | Properties.PropertyType | Constants that represent the type of a Property. | |
| class | Properties.SafetyRegionType | Safety region types for SAFETY_REGION. |
|
| class | Properties.TrackingStatusFlag | Flags for TRACKING_STATUS. |
|
Public Methods
| boolean |
Inherited Methods
Public Methods
public boolean get (int propertyKey, Value valueOut)
Gets the property with the given key.
Parameters
| propertyKey | The property to get; one of the constants in Properties.PropertyType. |
|---|---|
| valueOut | The Value to write the result in; must not be null. |
Returns
- Whether the property was found. If false, valueOut is unmodified.