コード例 #1
0
 public static bool IsLimb(this GuideObject go)
 {
     if (go == null)
     {
         return(false);
     }
     if (go.enablePos)
     {
         return(false);
     }
     return(go.IsHand() || go.IsFoot());
 }
コード例 #2
0
 public static bool IsLimb(this GuideObject go)
 {
     return(go.IsHand() || go.IsFoot());
 }