コード例 #1
0
        public void Stop()
        {
            if (allFramesReplay != null)
            {
                allFramesReplay.Stop();
            }

            Started = false;
        }
コード例 #2
0
ファイル: KinectReplay.cs プロジェクト: sopankhosla/harley
        public void Stop()
        {
            if (colorReplay != null)
            {
                colorReplay.Stop();
            }

            if (depthReplay != null)
            {
                depthReplay.Stop();
            }

            if (skeletonReplay != null)
            {
                skeletonReplay.Stop();
            }

            Started = false;
        }