Skip to main content
Glama

rupa_tabrakan

Destructive

Generate collision proxies for 3D physics scenes. Select from box, sphere, capsule, convex, or static mesh shapes and adjust simplification to prevent tunneling and loose collisions.

Instructions

Proksi tabrakan + dua arah kesalahannya. "tembus" = permukaan asli yang berada DI LUAR proksi (benda menembus dinding); "longgar" = proksi yang jauh di luar permukaan asli (tabrakan terasa di udara kosong). Untuk mesin fisika web seperti Rapier, cembung adalah kuda bebannya — mesh_sederhana hanya untuk benda STATIS, karena trimesh dinamis tidak didukung sebagian besar mesin.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
objekNo
ruangNoNama ruang kerja; tiap ruang punya adegan.blend sendiri.utama
bentukNocembung
nisbahNoPenyederhanaan untuk `cembung` (bawaan 0,15) dan `mesh_sederhana` (0,25). Hull mentah bisa ribuan segitiga; mesin fisika ingin puluhan.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.6.2

TDQS

B3.1/5.0
Behavior3/5

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

Annotations already signal destructiveHint=true; the description does not contradict that. It adds useful constraints such as dynamic trimesh not being supported by most engines and clarifies the behavior of `tembus` and `longgar`, but it does not say what is actually mutated or what the invocation result is.

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 core purpose is front-loaded and the rest of the description explains only relevant jargon and constraints. The technical details are compact and not redundant, even though the phrasing is dense and assumes some collision-proxy familiarity.

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?

For a four-parameter mutation tool with no output schema, the description does not fully clarify what object or current scene receives the proxy, nor what a successful call returns. It provides strong domain detail but leaves the invocation contract partially implicit.

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?

The description adds meaningful semantics around the `bentuk` parameter and the meaning of proxy surface gaps, which the schema does not fully provide. With only 50% schema description coverage, it still leaves `objek` semantically implicit and does not tie every parameter to its intended function.

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

Purpose3/5

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

The description establishes that the tool deals with collision proxies and explains the two error directions, so it is not a tautology. However, it never states an action verb such as 'create' or 'update', and it does not differentiate the tool from siblings like rupa_proksi.

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 gives concrete when-to-use guidance for shape selection: `cembung` is the workhorse for web physics engines like Rapier, and `mesh_sederhana` should be used only for static objects. But it gives no context on when to use this tool as a whole versus related tools, so the guidance is incomplete.

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