CheckFacingAxisWarning() private static method

private static CheckFacingAxisWarning ( BipedReferences references, bool log ) : bool
references BipedReferences
log bool
return bool
Ejemplo n.º 1
0
 public static bool CheckSetupWarning(BipedReferences references, bool log)
 {
     return(BipedReferences.CheckLimbWarning(references.leftThigh, references.leftCalf, references.leftFoot, log) && BipedReferences.CheckLimbWarning(references.rightThigh, references.rightCalf, references.rightFoot, log) && BipedReferences.CheckLimbWarning(references.leftUpperArm, references.leftForearm, references.leftHand, log) && BipedReferences.CheckLimbWarning(references.rightUpperArm, references.rightForearm, references.rightHand, log) && BipedReferences.CheckSpineWarning(references, log) && BipedReferences.CheckEyesWarning(references, log) && BipedReferences.CheckRootHeightWarning(references, log) && BipedReferences.CheckFacingAxisWarning(references, log));
 }