Esempio n. 1
0
 public static bool IsLimb(this GuideObject go)
 {
     if (go == null)
     {
         return(false);
     }
     if (go.enablePos)
     {
         return(false);
     }
     return(go.IsHand() || go.IsFoot());
 }
Esempio n. 2
0
 public static bool IsLimb(this GuideObject go)
 {
     return(go.IsHand() || go.IsFoot());
 }