poker_updateBuildupFactor
Updates buildup factor settings for materials by modifying slant correction and finite medium correction parameters in task management systems.
Instructions
既存ビルドアップ係数の設定を更新します
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| material | Yes | 更新する材料名 | |
| use_finite_medium_correction | No | 新しい有限媒体補正設定 | |
| use_slant_correction | No | 新しいスラント補正設定 |
Input Schema (JSON Schema)
{
"properties": {
"material": {
"description": "更新する材料名",
"type": "string"
},
"use_finite_medium_correction": {
"description": "新しい有限媒体補正設定",
"type": "boolean"
},
"use_slant_correction": {
"description": "新しいスラント補正設定",
"type": "boolean"
}
},
"required": [
"material"
],
"type": "object"
}