public void ForceShieldDirection(ShieldDirection direction)
    {
        //This is called by the CharacterAnimationListener.SetShieldDirection
        ShieldView shield = m_EquipModel.ShieldParent.GetComponentInChildren <ShieldView>();

        if (shield == null)
        {
            return;
        }
        shield.ForceShieldDirection(direction);
    }