set_project_setting
Configure Godot project settings by writing values to project.godot, creating sections if needed, using proper config format for strings, booleans, and numbers.
Instructions
Write a setting to project.godot. The value must be a valid Godot config value string. For strings, wrap in double quotes: e.g. value='"res://scene.tscn"'. For booleans/numbers use: 'true', '42'. Creates the section if it doesn't exist.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectPath | Yes | Absolute path to the project directory | |
| section | Yes | Section name (e.g. "application", "display", "rendering") | |
| key | Yes | Setting key (e.g. "config/name", "window/size/viewport_width") | |
| value | Yes | Value string in Godot config format |