I'm Left Handed so I added to the control codes

if (Input.GetKey(KeyCode.LeftArrow) || Input.GetKey(KeyCode.A))
{
print(“Turning Left”);
} else if (Input.GetKey(KeyCode.RightArrow) || Input.GetKey(KeyCode.D))
{
print(“Turning Right”);
}

Privacy & Terms