SA.FullBodyIK.IsHandFingerEffectors C# (CSharp) Method

IsHandFingerEffectors() public static method

public static IsHandFingerEffectors ( EffectorLocation effectorLocation ) : bool
effectorLocation EffectorLocation
return bool
		public static bool IsHandFingerEffectors( EffectorLocation effectorLocation )
		{
			int v = (int)effectorLocation;
			return v >= (int)EffectorLocation.LeftHandThumb && v <= (int)EffectorLocation.RightHandLittle;
		}
		
FullBodyIK