CubeGestureListener.UserLost C# (CSharp) 메소드

UserLost() 공개 메소드

Invoked when a user gets lost. All tracked gestures for this user are cleared automatically.
public UserLost ( long userId, int userIndex ) : void
userId long User ID
userIndex int User index
리턴 void
	public void UserLost(long userId, int userIndex)
	{
		// the gestures are allowed for the primary user only
		if(userIndex != playerIndex)
			return;


        sGestureText = string.Empty;
		
	}