()
| 8743 | } |
| 8744 | |
| 8745 | public CVRSpatialAnchors VRSpatialAnchors() |
| 8746 | { |
| 8747 | CheckClear(); |
| 8748 | if (m_pVRSpatialAnchors == null) |
| 8749 | { |
| 8750 | var eError = EVRInitError.None; |
| 8751 | var pInterface = OpenVRInterop.GetGenericInterface(FnTable_Prefix + IVRSpatialAnchors_Version, ref eError); |
| 8752 | if (pInterface != IntPtr.Zero && eError == EVRInitError.None) |
| 8753 | m_pVRSpatialAnchors = new CVRSpatialAnchors(pInterface); |
| 8754 | } |
| 8755 | return m_pVRSpatialAnchors; |
| 8756 | } |
| 8757 | |
| 8758 | public CVRDebug VRDebug() |
| 8759 | { |
no test coverage detected