Пример #1
0
 public CVRChaperoneSetup VRChaperoneSetup()
 {
     CheckClear();
     if (m_pVRChaperoneSetup == null)
     {
     var eError = EVRInitError.None;
     var pInterface = OpenVRInterop.GetGenericInterface(FnTable_Prefix+IVRChaperoneSetup_Version, ref eError);
     if (pInterface != IntPtr.Zero && eError == EVRInitError.None)
         m_pVRChaperoneSetup = new CVRChaperoneSetup(pInterface);
     }
     return m_pVRChaperoneSetup;
 }
Пример #2
0
 public void Clear()
 {
     m_pVRSystem = null;
     m_pVRChaperone = null;
     m_pVRChaperoneSetup = null;
     m_pVRCompositor = null;
     m_pVROverlay = null;
     m_pVRRenderModels = null;
     m_pVRExtendedDisplay = null;
     m_pVRSettings = null;
     m_pVRApplications = null;
 }