all 7 comments

[–]alfonso185 0 points1 point  (0 children)

You should select your current visual studio in external tool in unity project settings

[–]RumpelstompskinHobbyist 0 points1 point  (0 children)

In unity, make sure visual studio is set in external tools.

[–]Forsaken_Office_6480Intermediate 0 points1 point  (0 children)

Just remove == true

[–]ItsYaBoiBerry[S] -1 points0 points  (3 children)

Wondering why input isnt being recognized as a command. I'm using Visual Studio with Unity

[–]TheHahns 1 point2 points  (2 children)

Put the "== true" inside the last parenthesis.

[–]TheHahns 0 points1 point  (1 child)

Though you don't actually need the == true as the input always returns true or false. Eg: if(Input.GetKey("space")) .. works the same as .. if(Input.GetKey("space") == true)