private void Update()
    {
        Vector2 aimingVector = PlayerGun.GetAimingVector();

        AimFollow.position = new Vector2(PlayerTransform.position.x + (aimingVector.x * MaxX),
                                         PlayerTransform.position.y + (aimingVector.y * MaxY));
    }