Kinect.KinectManager.IsUserTracked C# (CSharp) Méthode

IsUserTracked() public méthode

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.
Résultat bool
        public bool IsUserTracked(Int64 userId)
        {
            return dictUserIdToIndex.ContainsKey(userId);
        }
KinectManager