I have problem with suggestions in Visual studio Code during coding some Game. Whenever i see some tutorial on youtube all developers have those autosuggestions working properly, like when they type for example Input.
they receive instantly Godot methods, while when i use my Visual studio Code, and trying to do this i get the message “no suggestions.” when for example i try to find the method is_key_pressed()
while typing Input.is_
(Hotkey for ctrl + spacebar). Saw couple of tutorials about “how to configure Visual Studio Code for Godot” but non of them raise the subject. Tried to google out this topic, but without any result aswell. Maybe I am dumb or something, but can not find the solution.
Could you help me with this?
Make sure that you have set the correct language mode for your Godot scripts. You can do this by checking the bottom-right corner of the VS Code window. It should display the language mode. If it’s not set to GDScript or the correct language, you can change it by clicking on it and selecting GDScript.
Ensure that you have installed any necessary extensions for working with Godot in VS Code. There are extensions available specifically for Godot that provide better support for code suggestions and syntax highlighting. You can search for and install these extensions from the Extensions view in VS Code (Ctrl+Shift+X).