Write a SOUND spec for an SFX and run the unified generator
Generates sound effect specifications and runs the unified generator to create audio files.
/plugin marketplace add nethercore-systems/nethercore-ai-plugins/plugin install zx-procgen@nethercore-ai-plugins<id>Create a SOUND spec at .studio/specs/sounds/<id>.spec.py.
.studio/specs/sounds/<id>.spec.pypython .studio/generate.py --only sounds# <id> SFX Specification
# Run: python .studio/generate.py --only sounds
SOUND = {
"sound": {
"name": "<id>",
"category": "ui",
"duration": 0.2,
"sample_rate": 22050,
"layers": [],
"envelope": {"attack": 0.005, "decay": 0.15, "sustain": 0, "release": 0.05},
"normalize": True,
"peak_db": -3.0,
}
}