# OLD: Distance Learning Setup

{% embed url="<https://youtu.be/ClHKsu33Lkc>" %}

{% embed url="<https://youtu.be/UYDDs4FvswQ>" %}

```
//Put this code in the update

        for (int i = 0; i < 20; i++)
        {
            if (Input.GetKeyDown("joystick 1 button " + i))
            {
                print("joystick 1 button " + i);
            }
        }


        if (Input.GetAxis("TestInput") != 0 )
        {
            print(Input.GetAxis("TestInput"));
        }
```
