Kinect.KinectManager.IsUserTracked C# (CSharp) Метод

IsUserTracked() публичный Метод

Determines whether the user with the specified userId is in the list of tracked users or not.
public IsUserTracked ( Int64 userId ) : bool
userId Int64 User identifier.
Результат bool
        public bool IsUserTracked(Int64 userId)
        {
            return dictUserIdToIndex.ContainsKey(userId);
        }
KinectManager