I’m using Unity 2018.4.6 and when I use line: float xThrow = CrossPlatformInputManager.GetAxis(“Horizontal”), and then try to Print the result, nothing ever appears in the console. I ensured I clicked into the game window, but nothing.
I’ve also tried to use: float xThrow = Input.GetAxis(“Horizontal”); but nothing ever shows in the console.
I’ve tried to go back to 2017, but ran into issues and would prefer to keep working in 2018.4 if possible.
By “nothing”, you mean that not even 0 gets logged into your console? If so, check if your Player script is assigned to an active game object in your Hierarchy. Did you click the Play button? Are the messages enabled in your Console?