예제 #1
0
        private void StopOutput()
        {
            if (Camera.main != null)
            {
                Camera.main.targetTexture = null;
            }

            _decklink.StopOutput();
            _activeMode = null;
        }
예제 #2
0
        private void StopOutput()
        {
            if (_renderCamera != null)
            {
                _renderCamera.targetTexture = null;
            }

            if (_outputDecklink != null)
            {
                _outputDecklink.StopOutput();
                if (_outputDecklink.Device != null)
                {
                    _outputDecklink.StopOutput();
                }
            }
        }
예제 #3
0
 private void StopOutput()
 {
     _decklink.StopOutput();
     _activeMode = null;
 }