Pls help i am using vs code and also vs code not showing unity stuff im new and know nothing . I tried editing preferences but still dont work
This may help you with intellisense problems:
Likely, if you have appeared here to this page you are having the problem I had for the past hour or so. Intellisense is not working in Visual Studio. Well lucky for you, I figured out the solution to fix this issue after searching the entire web. So you don’t have to search the web anymore, I will tell you how I fixed the issue.
Step 1:
Close Visual Studio
Step 2:
In Unity, go to Edit < Preferences < External Tools (left part of the Window)
Step 3:
In External Tools go to the part that sa…
Also, try update the VSCode package inside of Unity: Window → Package Manager → Search for Visual Studio Code Editor → Press the Update button
Also, this: No suggestions in Vscode
Also, here is how to report your problem productively in the Unity3D forums:
http://plbm.com/?p=220
How to understand errors in general:
Errors are there to help you. It’s a good idea to try and learn how to understand them. Try to apply the breakdown in this post of your original error to the new error you’re receiving. If you don’t understand a word, don’t just gloss over it. Ask what the word means here, or research it elsewhere. Cultivating a habit of research will pay dividends for you in every part of your coding journey.
Here’s a breakdown of your specific error, but try applying this process to any other error you may en…
Vryken
January 17, 2021, 4:13am
3
The error message typically means you’re using a char
value instead of a string
value.
Are you typing “Hello ” or ‘Hello ’ ? The double/single quotations matter. Double-quotations represent a string
literal, while single-quotations represent a char
literal.
Since a char
can only be one character long, ‘Hello ’ would be invalid syntax.