-
-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Godot debugging process does not work with new update. (Project is abandoned?) #64
Comments
This extension only supports Godot 3.x. For Godot 4.x you don't need to use this extension for debugging, you can use the normal Microsoft C# extension. See the Godot documentation for instructions. Closing as a duplicate of #43. |
I follow the introduction but it only Play the main scene. But, how do I make it to run debug on the current selected screen in the editor? I only want to test some specific scenes. |
You can specify the scene in the arguments, for example: {
"version": "0.2.0",
"configurations": [
{
"name": "Play",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${env:GODOT4}",
"args": ["${workspaceFolder}/MyScene.tscn"],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
}
]
} See more information about the available arguments in the Command line tutorial documentation page. |
I guess this is the only current solution for now. |
When using Godot 4.2.1 and version 2.0.0 of the VS Code plugin, debugging seems completely broken. Play In Editor does not activate the editor, "Launch" launches a copy of the project in the editor but not in a way that allows the running project to be debugged, and Attach does nothing.
To reproduce this issue, follow the following steps:
And it will fail.
I'm concerned that this extension seems to have been abandoned by the developer, as my research indicates it seems many people have had issues getting this working over the last couple of years, and no solution has been provided. The 2.0.0 update seems to have brought new problems with it as well, and I've seen no cases anyone successfully getting it to work.
Thank you.
The text was updated successfully, but these errors were encountered: