poker_updateZone
Update material properties and density values for specified zones in task management structures to maintain accurate physical modeling parameters.
Instructions
既存ゾーンの材料や密度を更新します
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body_name | Yes | 更新するゾーンの立体名 | |
| density | No | 新しい密度 (g/cm³) | |
| material | No | 新しい材料名 |
Input Schema (JSON Schema)
{
"properties": {
"body_name": {
"description": "更新するゾーンの立体名",
"type": "string"
},
"density": {
"description": "新しい密度 (g/cm³)",
"maximum": 30,
"minimum": 0.001,
"type": "number"
},
"material": {
"description": "新しい材料名",
"type": "string"
}
},
"required": [
"body_name"
],
"type": "object"
}