Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

if i understood correctly, you need a code example for the turning left/right with keyboard input instead of mouse?
in that case:

            if (Input.GetKey(KeyCode.LeftArrow))

            {

                rb2d.AddTorque(torqueAmount * Time.deltaTime);

            } 

            else if (Input.GetKey(KeyCode.RightArrow))

            {

                rb2d.AddTorque(-torqueAmount * Time.deltaTime);

            }

(+1)

Thanks so much!  I will try this!