diff --git a/docs/ARCHITECTURE.md b/docs/ARCHITECTURE.md index fb007e1..21269aa 100644 --- a/docs/ARCHITECTURE.md +++ b/docs/ARCHITECTURE.md @@ -18,7 +18,7 @@ ## Project Structure ```txt -YOU_GET_CHEMO/ +chemo-sim/ ├── project.godot # Godot project config ├── scenes/ # Game scenes (organized by system) │ ├── hospital/ @@ -127,8 +127,8 @@ jobs: ```bash # Export all platforms locally -godot --export-release Windows "build/windows/YOU_GET_CHEMO.exe" -godot --export-release Linux "build/linux/YOU_GET_CHEMO.x86_64" +godot --export-release Windows "build/windows/chemo-sim.exe" +godot --export-release Linux "build/linux/chemo-sim.x86_64" ``` ### Rapid Testing diff --git a/docs/BUILD_GUIDE.md b/docs/BUILD_GUIDE.md index 7a40396..aaa44b1 100644 --- a/docs/BUILD_GUIDE.md +++ b/docs/BUILD_GUIDE.md @@ -27,13 +27,13 @@ godot --editor ### Windows ```bash -godot --export-release Windows "build/windows/YOU_GET_CHEMO.exe" +godot --export-release Windows "build/windows/chemo-sim.exe" ``` ### Linux ```bash -godot --export-release Linux "build/linux/YOU_GET_CHEMO.x86_64" +godot --export-release Linux "build/linux/chemo-sim.x86_64" ``` ## CI/CD (GitHub Actions) @@ -72,5 +72,5 @@ Set version in `project.godot` → `application/config/version`. | Problem | Fix | | ----------------------------------- | ------------------------------------------------------------------- | | Export fails with missing templates | Download export templates in Godot Editor → Manage Export Templates | -| Linux build won't run | `chmod +x build/linux/YOU_GET_CHEMO.x86_64` | +| Linux build won't run | `chmod +x build/linux/chemo-sim.x86_64` | | Godot version mismatch | Check CI config and local Godot version match |