Files
ggj26_heron/README.md

26 lines
585 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# ggj26_heron
Global Game Jam 2026 项目,使用 Unreal Engine 5.7 开发的 2D 动作游戏。
## Clangd 配置
项目已配置 `.clangd` 用于代码补全和智能提示。每个开发者需在本地生成 `compile_commands.json`
### Mac / Linux
```bash
./setup_clangd.sh <引擎路径>
# 例如
./setup_clangd.sh ~/Unreal/UE_5.7
```
### Windows (PowerShell)
```powershell
.\setup_clangd.ps1 <引擎路径>
# 例如
.\setup_clangd.ps1 "C:\Program Files\Epic Games\UE_5.7"
```
添加新的 C++ 文件后“大概”需重新执行上述命令以更新编译数据库。