mirror of
https://github.com/PlayableIntelligence/game-creator.git
synced 2026-09-19 07:34:10 +08:00
91981b44d4
- Add crowd-dash: 3D neon city endless runner (Three.js) with particles, camera juice, synthwave audio, and death slow-motion - Rename examples/example-game → examples/asteroid-dodger - Enable agent teams in settings.json Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
56 lines
1.2 KiB
JSON
56 lines
1.2 KiB
JSON
{
|
|
"_comment": "Test actions for Crowd Dash. ArrowLeft/ArrowRight to dodge crowd. Auto-runs forward.",
|
|
"steps": [
|
|
{
|
|
"_comment": "Idle — let auto-run start and score some distance",
|
|
"buttons": [],
|
|
"frames": 15
|
|
},
|
|
{
|
|
"_comment": "Dodge right",
|
|
"buttons": ["ArrowRight"],
|
|
"frames": 20
|
|
},
|
|
{
|
|
"_comment": "Dodge left",
|
|
"buttons": ["ArrowLeft"],
|
|
"frames": 20
|
|
},
|
|
{
|
|
"_comment": "Idle — run straight",
|
|
"buttons": [],
|
|
"frames": 10
|
|
},
|
|
{
|
|
"_comment": "Quick dodge right then left",
|
|
"buttons": ["ArrowRight"],
|
|
"frames": 15
|
|
},
|
|
{
|
|
"_comment": "Dodge left to center",
|
|
"buttons": ["ArrowLeft"],
|
|
"frames": 15
|
|
},
|
|
{
|
|
"_comment": "Idle — should have scored by now",
|
|
"buttons": [],
|
|
"frames": 10
|
|
},
|
|
{
|
|
"_comment": "Dodge right aggressively",
|
|
"buttons": ["ArrowRight"],
|
|
"frames": 25
|
|
},
|
|
{
|
|
"_comment": "Return to center",
|
|
"buttons": ["ArrowLeft"],
|
|
"frames": 20
|
|
},
|
|
{
|
|
"_comment": "Idle — let crowds come, long period for potential collision",
|
|
"buttons": [],
|
|
"frames": 80
|
|
}
|
|
]
|
|
}
|