Files
libakgl/tests/assets/testcharacter.json
Andrew Kesterson cf9ebb206f Repair embedded dependency build and test setup
Isolate vendored test registration, namespace project error codes, and update dependency revisions. Fix mutable sprite path handling, out-of-tree fixtures, and charviewer initialization while documenting the outstanding character-to-sprite refcount bug.

Co-authored-by: Codex (GPT-5) <noreply@openai.com>
2026-07-29 18:17:08 -04:00

22 lines
347 B
JSON

{
"name": "testcharacter",
"movementspeed": 1,
"acceleration_x": 0.20,
"acceleration_y": 0.20,
"sprite_mappings": [
{
"state": [
"AKGL_ACTOR_STATE_ALIVE",
"AKGL_ACTOR_STATE_FACE_LEFT"
],
"sprite": "testsprite"
},
{
"state": [
"AKGL_ACTOR_STATE_DEAD"
],
"sprite": "testsprite2"
}
]
}