-
-
Notifications
You must be signed in to change notification settings - Fork 224
Open
Labels
Description
Godot version
4.5.1-release
VS Code version
1.107.1
Godot Tools VS Code extension version
2.5.1
System information
Windows 10
Issue description
some code snippets don't have static typing, for example process, physics, input.
configurations/snippets.json, line 29:
"_process method of Node": {
"prefix": "process",
"body": [
"func _process(delta):",
"\t${1:pass}"
]
},
"_physics_process method of Node": {
"prefix": "physics",
"body": [
"func _physics_process(delta):",
"\t${1:pass}"
]
},
"_input method of Node": {
"prefix": "input",
"body": [
"func _input(event):",
"\t${1:pass}"
]
},Steps to reproduce
Write process, physics or input in a gdscript file and press enter.