Input Stopped Working

Hi. This has been very sad, and figuring out what to do is hard. Whenever I launched the game on my OS, its input stopped working. I have the Unity folder right here. So I would like someone to go through and check it, my deadline is on 2024-12-06T08:00:00Z. So it would be a lifesaver to go through the code and send it back to me. Thank you very much if you do!

Unity Folder Download Here!

That’s not how debugging works!

Sounds like you wrote a bug… and that means… time to start debugging!

By debugging you can find out exactly what your program is doing so you can fix it.

Use the above techniques to get the information you need in order to reason about what the problem is.

You can also use Debug.Log(...); statements to find out if any of your code is even running. Don’t assume it is.

Once you understand what the problem is, you may begin to reason about a solution to the problem.

Remember with Unity the code is only a tiny fraction of the problem space. Everything asset- and scene- wise must also be set up correctly to match the associated code and its assumptions.