Complete early roadmap foundation and calendar helpers

This commit is contained in:
2026-05-15 21:41:37 -07:00
parent 6cd6729b7b
commit 8ee1f83b16
80 changed files with 3354 additions and 157 deletions
+22
View File
@@ -0,0 +1,22 @@
# Basic Animation Blueprint
The MVP player character uses the Unreal mannequin unarmed animation Blueprint:
- Character Blueprint: `/Game/Agrarian/Blueprints/Characters/BP_AgrarianPlayerCharacter`
- Skeletal mesh: `/Game/Characters/Mannequins/Meshes/SKM_Quinn_Simple`
- Animation Blueprint: `/Game/Characters/Mannequins/Anims/Unarmed/ABP_Unarmed`
This provides the first playable animation baseline for idle, walk/run
locomotion, jump, falling, and landing. Crouch and prone currently reuse the
same baseline presentation until the dedicated stance animation pass replaces
them with survival-specific movement.
Verification script:
```text
Scripts/verify_basic_animation_blueprint.py
```
The script validates that the Agrarian player Blueprint is still wired to the expected
mesh and animation class, and that the required idle, blendspace, jump, fall,
and land assets exist.