poker_updateTransform
Update transformation operations for existing tasks by modifying rotation and translation parameters to adjust task positioning and orientation.
Instructions
既存変換の操作を更新します
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | 更新する変換名 | |
| operations | No | 新しい変換操作の配列 |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "更新する変換名",
"type": "string"
},
"operations": {
"description": "新しい変換操作の配列",
"items": {
"properties": {
"rotate_around_x": {
"type": "number"
},
"rotate_around_y": {
"type": "number"
},
"rotate_around_z": {
"type": "number"
},
"translate": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"required": [
"name"
],
"type": "object"
}