protected override void Stop() { base.Stop(); if (adapter != null) { adapter.Dispose(); adapter = null; } }
protected override void Stop() { base.Stop(); if (iface != null) { iface.Dispose(); iface = null; } }
override protected void Start() { base.Start(); if (adapter == null && !String.IsNullOrEmpty(usedPath)) { adapter = new Location2DAdapter( OSVR.ClientKit.Location2DInterface.GetInterface(ClientKit.instance.context, usedPath)); } }