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