Skip to content

Some snippets don't have static typing #954

@iker-sr

Description

@iker-sr

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions