Skip to content

Commit 49417bb

Browse files
dsarnoclaude
andcommitted
fix(stormtest): particle set_process uses node_path, not path
The Python handler is particle_set_process(node_path, properties); the harness passed `path`, producing an unexpected-kwarg INVALID_PARAMS on every call. Validated: set_process now succeeds (auto-creates the ParticleProcessMaterial). No-reload pass at ~4.7% error, remaining INVALID_PARAMS are intermittent name collisions only. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent c853a98 commit 49417bb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

script/stormtest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -570,8 +570,8 @@ async def op_particle(w: Worker):
570570
{
571571
"op": "set_process",
572572
"params": {
573-
"path": f"{w.base}/{name}",
574-
"properties": {"scale_min": 0.5, "scale_max": 1.5},
573+
"node_path": f"{w.base}/{name}",
574+
"properties": {"gravity": {"x": 0, "y": -9.8, "z": 0}},
575575
},
576576
},
577577
op_label="particle_manage.set_process",

0 commit comments

Comments
 (0)