スフィア生成(整形込み)
dx12_spawn_sphereSpawns a sphere entity in a DX12 scene with configurable position, scale, rotation, color, metallic, and roughness. Returns the entity ID and name for further manipulation.
Instructions
スフィア(球)を1コールで生成。position/scale/rotation/color/metallic/roughness をまとめて指定可。{entityId, name, sceneGeneration} を返す。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | エンティティ名。省略時 'Sphere'。 | |
| color | No | [r,g,b] 0..1 基本色。 | |
| scale | No | [x,y,z]。 | |
| metallic | No | 金属度 0..1。 | |
| position | No | [x,y,z]。省略時 [0,0,0]。 | |
| rotation | No | [x,y,z] Euler 度。 | |
| roughness | No | 粗さ 0..1。 |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | No | エンジンからの生の結果。実際の形は各ツールの説明 / dx12_describe_components を参照。text にも同内容を JSON 文字列で格納。 |