Up to date

This page is up to date for Godot 4.2. If you still find outdated information, please open an issue.

IDEの構成

すでにGodotのクローンを作成 し、コンパイルしたとします。

任意のテキストエディタを使用してコマンドラインで scons を呼び出すことで簡単にGodotを開発できますが、IDE(統合開発環境)で作業する場合の、いくつかの一般的なもののセットアップ手順を以下に示します:

他のIDEを使用することは可能ですが、それらのセットアップはまだ文書化されていません。

If your editor supports the language server protocol, you can use clangd for completion, diagnostics, and more. You can generate a compilation database for use with clangd one of two ways:

# Generate compile_commands.json while compiling
scons compiledb=yes

# Generate compile_commands.json without compiling
scons compiledb=yes compile_commands.json