bulk_set_actor_property
Apply multiple property mutations to multiple actors in a single MCP call, reducing round trips after batch spawning.
Instructions
Apply many UPROPERTY mutations across many actors in one MCP call. Composes set_actor_property bridge-side; mirrors the bulk_*_assets family shape (assignments list + continue_on_error). Each assignment specifies its own {actor, property, value} so this is NOT 'set the same property on N actors' — it's 'run N individual sets'. Useful after batch-spawning to push initial-state mutations without N round-trips.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| assignments | Yes | List of {actor, property, value} triples; each actor and property non-empty, max 200 entries. | |
| continue_on_error | No | Default true. When false, stop at the first per-assignment failure and return the partial results plus halted_at_index. |