KAS.KASModuleAttachCore.WaitAndCheckJoint C# (CSharp) Method

WaitAndCheckJoint() private method

private WaitAndCheckJoint ( ) : IEnumerator
return IEnumerator
        private IEnumerator WaitAndCheckJoint()
        {
            yield return new WaitForFixedUpdate();
            if (attachMode.StaticJoint) {
              if (StaticAttach.fixedJoint == null) {
            KAS_Shared.DebugWarning("WaitAndCheckJoint(Core) Static join broken !");
            OnJointBreakStatic();
              }
            }
            if (attachMode.FixedJoint) {
              if (FixedAttach.fixedJoint == null) {
            KAS_Shared.DebugWarning("WaitAndCheckJoint(Core) Fixed join broken !");
            OnJointBreakFixed();
              }
            }
        }