SA.FullBodyIK.IsHandFingerEffectors C# (CSharp) 메소드

IsHandFingerEffectors() 공개 정적인 메소드

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