nice game! visually pleasing, good sound design, had a fun playthrough :)
dreaman
Creator of
Recent community posts
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);
}
thank you :)
i was thinking of adding more to it to make it a more complete product, but i decided to move on with more tutorials for now to expand my still very poor Unity knowledge/experience, I still need to learn so much.
Maybe i will get back to it at some point, but I can't say when that would be.
However, it won't be too long until you see the next game here on my page :)
Best wishes, and have a great year 2022!