Input (PC/ANDROID)

Hello!
please forgive me for a dumb question!! but…
Just started to learn this awesome Engine, starting from online course.
So i try to implement this Asset:
Joystick Pack | Input Management | Unity Asset Store
but it does not work!, i was doing just like described on PDF.
And build new Project with this:
2D Roguelike | Tutorial Projects | Unity Asset Store
That Joystick Pack did’t work.
Same result on different projects, Joystick moving like on any mobile devices but player stand still.
i’ve start to think maybe i need to implement to my player movement code, but i just started to learn and don’t know where or what to do.
here is walking script that i’ve trying to work with.
Maybe Somebody knew, or know some issues with this…
My Unity version: 2019.4.22.f1 Personal
Thank You!!!

public class Player : MonoBehaviour
{
    private BoxCollider2D boxCollider;
    private Vector3 moveDelta;
    private RaycastHit2D hit;

    private void Start()
    {
        boxCollider = GetComponent<BoxCollider2D>();
    }

    private void FixedUpdate()
    {
        float x = Input.GetAxisRaw("Horizontal");
        float y = Input.GetAxisRaw("Vertical");
       
        // Reset MoveDelta
        moveDelta = new Vector3(x, y, 0);
      
        ///Swap Sprite Direction
        if (moveDelta.x > 0)
            transform.localScale = Vector3.one;
        else if (moveDelta.x < 0)
            transform.localScale = new Vector3(-1, 1, 1);
      
        ///Collision with blocks and nps, if not null we can't move
        hit = Physics2D.BoxCast(transform.position, boxCollider.size, 0, new Vector2(0, moveDelta.y), Mathf.Abs(moveDelta.y * Time.deltaTime), LayerMask.GetMask("Actor", "Blocking"));
        if (hit.collider == null)
        {
            ///make player to move
            transform.Translate(0, moveDelta.y * Time.deltaTime, 0);
        }
        hit = Physics2D.BoxCast(transform.position, boxCollider.size, 0, new Vector2(moveDelta.x, 0), Mathf.Abs(moveDelta.x * Time.deltaTime), LayerMask.GetMask("Actor", "Blocking"));
        if (hit.collider == null)
        {
            ///make player to move
            transform.Translate(moveDelta.x * Time.deltaTime,0, 0);
        }
    }
}

Closed