An open API service indexing awesome lists of open source software.

https://github.com/guasam/godot-vscode-project

A basic project boilerplate for Godot Engine C# projects with debugging support for Visual Studio Code.
https://github.com/guasam/godot-vscode-project

godot-csharp-debug godot-csharp-project godot-csharp-vscode godot-csharp-vscode-debug godot-vscode-project

Last synced: 5 months ago
JSON representation

A basic project boilerplate for Godot Engine C# projects with debugging support for Visual Studio Code.

Awesome Lists containing this project

README

        

# Godot 4.2 C# Project + Debug for VSCode

A basic project boilerplate for Godot Engine C# projects with preconfigured debugging support for Visual Studio Code.





## Prerequisites

- Godot Engine (C# Support aka .NET)
- Visual Studio Code
- Extension [godot-csharp-vscode](https://marketplace.visualstudio.com/items?itemName=neikeq.godot-csharp-vscode)


## Available Debug Configurations

| Type | Description |
|--------------------------|------------------------------------------------------------|
| Debug Game | Starts the game with debugging enabled to identify and address available breakpoints in scripts. |
| Launch Editor | Starts the Godot Editor with the default scene. |
| Launch a Scene | Prompts to select a scene to start the game for debugging. |
| Attach to Process | Attaches to an existing running game process to debug assigned breakpoints. |


Make sure to update `.vscode/launch.json` for correct path of godot executable for all launch configurations:

```json
"program": "",
```