2026-06-08 00:17:28 +01:00
# tinqs/builds
2026-06-07 23:17:01 +00:00
2026-06-19 02:35:00 +01:00
Build artifacts for the Tinqs stack — engine editor binaries (+ their GodotSharp C# bindings).
**Binaries and GodotSharp are stored via Git LFS ** (see `.gitattributes` ). Source lives in
`tinqs/engine` , `tinqs/ariki-game` , `tinqs/ariki-sim` . See `manifest.json` for exact versions.
2026-06-08 00:17:28 +01:00
2026-06-19 02:35:00 +01:00
> **Use `tinqs pull` / `tinqs push`, never raw git** — these are LFS-heavy.
## Installing / updating the engine
2026-06-19 04:54:15 +01:00
**Don't copy files by hand — run the `update-engine` skill (it lives in the game repo, which everyone has): **
[tinqs.com/tinqs/ariki-game · .agents/skills/update-engine ](https://tinqs.com/tinqs/ariki-game/src/branch/main/.agents/skills/update-engine/SKILL.md ).
Hand it to your agent; it `tinqs pull` s ariki-game + builds, installs the binary + GodotSharp into
`../engine/bin/` , wipes stale caches, and verifies. Covers macOS + Windows.
2026-06-19 02:35:00 +01:00
## ⚠️ The one rule: binary + GodotSharp are a MATCHED PAIR
Each engine binary ships with a `GodotSharp/` folder (Godot's C# bindings) **generated from that
exact engine build**. You must install them **together ** and replace any old `GodotSharp` .
- The engine does **NOT ** regenerate GodotSharp at runtime. If it's missing you get a
* * `.NET assemblies not found` ** dialog pointing at `engine/bin/GodotSharp/Api/Debug` .
- A **stale ** GodotSharp (from an older engine) against a newer binary throws
* * `Wrapper class not found for type: Terrain3D` ** → terrain renders as water, animals don't animate.
This matters now because **Terrain3D and `agent_skinned` are native engine modules ** (no separate
`addons/terrain_3d` GDExtension `.framework` ). Built-in module classes need their wrappers baked
into GodotSharp, so GodotSharp had to be regenerated — and must ship here alongside the binary.
2026-06-08 00:17:28 +01:00
## Current contents
2026-06-19 02:35:00 +01:00
| Platform | Engine | Terrain3D | GodotSharp shipped? |
|---|---|---|---|
2026-08-21 20:48:59 +01:00
| `engine/macos-arm64/` | **4.7 ** (`fec9847` ) — native modules | built-in module | ✅ yes (`GodotSharp/` ) |
| `engine/windows-x64/` | **4.7 ** (`fec9847` ) — native modules | built-in module | ✅ yes (`GodotSharp/` ) |
2026-06-19 02:35:00 +01:00
2026-08-21 20:48:59 +01:00
Both platforms are on engine `fec9847` (spring-bone collision fix + lateral coupling + Planet-Dot splash). Check `manifest.json` for sha256. The 4.7 Windows cutover handoff is resolved: [`.agents/handoffs/forge-windows-4.7.md` ](.agents/handoffs/forge-windows-4.7.md ).
2026-06-19 02:35:00 +01:00
Long-term: CI (Gitea Actions) builds on push and publishes here / to S3 —
`docs/ai/plans/build-pipeline-architecture-2026-06-07.md` .