set_vertex_positions
Batch update multiple vertex positions in a mesh object in a single call, improving performance over repeated individual vertex updates.
Instructions
Batch-update multiple vertex positions in a single call (much faster than calling set_vertex_position repeatedly for many vertices).
Parameters:
name: Mesh object name
vertices: JSON array of {"index": int, "co": [x, y, z]} objects. Example: '[{"index":0,"co":[0,0,1]},{"index":3,"co":[1,0,0]}]'
world_space: True = co values are world-space (default), False = local/object space
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| vertices | Yes | ||
| world_space | No |