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