Update project references from YOU_GET_CHEMO to chemo-sim in documentation

This commit is contained in:
2026-05-30 12:17:15 +02:00
parent 9d966364b5
commit 822a9ff659
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -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
+3 -3
View File
@@ -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 |