OLD: Distance Learning Setup
This page describes how to get setup for distance learning, spring 2020.
Last updated
Was this helpful?
This page describes how to get setup for distance learning, spring 2020.
Last updated
Was this helpful?
//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"));
}