DamageHandler.AntibodyDamage C# (CSharp) Method

AntibodyDamage() public method

public AntibodyDamage ( ) : void
return void
    void AntibodyDamage()
    {
        if (GetComponent<FixedJoint>()) {
            // adds to the tag percentage based on how many hinges are attached
            ShipVisibility.AddTagPercent(antibodyDamage * GetComponents<FixedJoint>().Length);
        }
    }