Niklas Aumueller 2026-03-27 08:05:23 +01:00
commit 744f182faa
5 changed files with 13 additions and 6 deletions

View File

@ -155,6 +155,7 @@ src/main/resources
- [Configuration](docs/CONFIGURATION.md) - [Configuration](docs/CONFIGURATION.md)
- [Testing](docs/TESTING.md) - [Testing](docs/TESTING.md)
- [Source Map](docs/SOURCE_MAP.md) - [Source Map](docs/SOURCE_MAP.md)
- [Unreal Avatar](docs/Prototyp1_README_EN.md)
- [Known Issues](docs/KNOWN_ISSUES.md) - [Known Issues](docs/KNOWN_ISSUES.md)
## Known Limitations ## Known Limitations

View File

@ -74,6 +74,8 @@ Persistence schema (`binary_event`):
- **External processes**: optional Python simulator and Unreal launcher script. - **External processes**: optional Python simulator and Unreal launcher script.
- **Animation output**: JSON file written to `animation.output.path`. - **Animation output**: JSON file written to `animation.output.path`.
For Unreal-specific implementation details, see [Unreal Avatar Prototype](Prototyp1_README_EN.md).
## Shutdown Behavior ## Shutdown Behavior
`ApplicationShutdownManager` performs: `ApplicationShutdownManager` performs:

View File

@ -7,10 +7,11 @@ This folder contains detailed technical documentation for the project.
1. [Project Review](PROJECT_REVIEW.md) 1. [Project Review](PROJECT_REVIEW.md)
2. [Architecture](ARCHITECTURE.md) 2. [Architecture](ARCHITECTURE.md)
3. [Setup and Run](SETUP_AND_RUN.md) 3. [Setup and Run](SETUP_AND_RUN.md)
4. [Configuration](CONFIGURATION.md) 4. [Unreal Avatar Prototype](Prototyp1_README_EN.md)
5. [Testing](TESTING.md) 5. [Configuration](CONFIGURATION.md)
6. [Known Issues](KNOWN_ISSUES.md) 6. [Testing](TESTING.md)
7. [Source Map](SOURCE_MAP.md) 7. [Known Issues](KNOWN_ISSUES.md)
8. [Source Map](SOURCE_MAP.md)
## Document Guide ## Document Guide
@ -20,6 +21,8 @@ This folder contains detailed technical documentation for the project.
Component responsibilities, runtime data flow, and integration boundaries. Component responsibilities, runtime data flow, and integration boundaries.
- [Setup and Run](SETUP_AND_RUN.md) - [Setup and Run](SETUP_AND_RUN.md)
Reproducible setup for minimal and full integration modes. Reproducible setup for minimal and full integration modes.
- [Unreal Avatar Prototype](Prototyp1_README_EN.md)
Unreal Engine prototype details (MetaHuman setup, assets, animation pipeline, and plugin requirements).
- [Configuration](CONFIGURATION.md) - [Configuration](CONFIGURATION.md)
Complete key reference, validation behavior, and script environment mapping. Complete key reference, validation behavior, and script environment mapping.
- [Testing](TESTING.md) - [Testing](TESTING.md)

View File

@ -51,7 +51,7 @@ The character Blueprint is the main logic blueprint.
All character logic is handled inside the Blueprint class. All character logic is handled inside the Blueprint class.
A picture of the current blueprint is in: docs/docs/blueprint.jpeg Current blueprint image: [docs/blueprint.png](docs/blueprint.png)
--- ---
@ -174,4 +174,3 @@ Password: 6gn56CZ6JyZzG4G
Created on: 2026-03-24 Created on: 2026-03-24

View File

@ -28,6 +28,8 @@ unreal.enabled=false
### Mode B: Full integration run ### Mode B: Full integration run
Enable simulator and/or Unreal startup only after all referenced paths are valid on your machine. Enable simulator and/or Unreal startup only after all referenced paths are valid on your machine.
For Unreal Engine prototype setup details (MetaHuman, assets, plugins, and animation flow), see
[Unreal Avatar Prototype](Prototyp1_README_EN.md).
## Build ## Build