Skip to main content
Glama
vino3dx
by vino3dx

bake_objects

Destructive

Bake texture elements like diffuse and normal onto objects by specifying an explicit element list. Returns per-map write results and identifies missing files.

Instructions

底层烘焙调用:用显式的元素列表烘焙一组对象。elements 为必填(如 #("diffuse","normal"))。返回每个贴图的写入结果,缺失文件会列在 failures/written 里。 [English] Low level bake: bake a list of objects with an explicit element list. elements is required (e.g. ["diffuse","normal"]). Returns per-map write results; missing files appear in failures/written.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sizeNo贴图边长(像素),默认 512。 | Map edge size in pixels, default 512.
folderNo输出文件夹;省略用上次设置或渲染输出目录。 | Output folder; omit to use the last setting or render output folder.
formatNo贴图格式,默认 png。 | Map format, default png.
objectsNo对象名列表;省略则用当前选择。 | Object names; omit to use the current selection.
elementsYes要烘焙的元素名列表(必填)。 | Element names to bake (required).
templateNo文件名模板,默认 %s_%e。 | Filename template, default %s_%e.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations include destructiveHint: true, and the description does not contradict that, nor does it elaborate on the destructive aspects. It does disclose that returns per-map write results and missing files appear in failures/written, which is useful beyond annotations. However, it doesn't detail what is destructive (overwriting files?) or any side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact, with key information up front: 'low level bake', required elements, and return behavior. Bilingual but not redundant. Each sentence adds value, though it could be shorter by dropping the bilingual repetition, but it's not bloated.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity (6 params, no output schema), the description covers the essential points but lacks detail on object naming conventions, template placeholders (%s, %e), and potential failure modes beyond listing them. It doesn't explain how missing files are reported or the impact of destructiveHint. With sibling bake tools present, more context on differences would help.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all parameters are described in the schema. The description adds the key point that elements is required and gives an example, which is helpful but not extensive. It doesn't add extra meaning beyond schema for size, folder, format, objects, template.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it is a low-level bake operation on a list of objects with an explicit element list, and mentions the required parameter. It distinguishes itself from higher-level bake tools like bake_texture, bake_ao, bake_normals, and bake_lighting by being low-level, though it doesn't explicitly name them.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It implies this is the low-level alternative but doesn't explicitly state when to use this vs. the other bake_* tools. It mentions 'low level bake' as a label, which gives context but no exclusions or alternative names.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools