Attention: Here be dragons
This is the latest
(unstable) version of this documentation, which may document features
not available in or compatible with released stable versions of Godot.
Checking the stable version of the documentation...
IDE 구성
우리는 귀하가 이미 clone 및 compiled Godot를 완료했다고 가정합니다.
텍스트 편집기를 사용하고 명령줄에서 ``scons``를 호출하여 Godot를 쉽게 개발할 수 있지만, IDE(통합 개발 환경)로 작업하려는 경우 다음은 널리 사용되는 몇 가지 설정 지침입니다:
다른 IDE를 사용할 수도 있지만 해당 설정은 아직 문서화되어 있지 않습니다.
편집자가 `언어 서버 프로토콜 <https://microsoft.github.io/language-server-protocol/>`__을 지원하는 경우 완성, 진단 등을 위해 `clangd <https://clangd.llvm.org>`__을 사용할 수 있습니다. 다음 두 가지 방법 중 하나로 clangd와 함께 사용할 컴파일 데이터베이스를 생성할 수 있습니다.
# Generate compile_commands.json while compiling
scons compiledb=yes
# Generate compile_commands.json without compiling
scons compiledb=yes compile_commands.json