if (Input.GetButtonDown("w"))
{
gb.transform.position = Vector3.forward * Time.deltaTime;
};
if (Input.GetKeyDown("s"))
{
gb.transform.position = -Vector3.forward * Time.deltaTime;
};
ArgumentException: Input Button w is not setup. To change the input settings use: Edit -> Project Settings -> Input CubeScript.Update () (at Assets/scripts/CubeScript.cs:14)