render_set_quality
Adjust render quality by setting a generic quality tier, sample count, and antialiasing. Writes renderer-specific sampling properties when supported, ignores unsupported ones, and can be verified with render_get_settings.
Instructions
设置一个通用的质量/采样旋钮,并尽可能写入渲染器特定的采样参数(aaSamples、samples 等)。不同渲染器的属性名差异很大,无法写入的会被忽略;用 render_get_settings 核对是否生效。 [English] Set a generic quality/sampling knob and, where the renderer exposes them, renderer-specific sampling properties (aaSamples, samples, ...). Property names vary greatly between renderers; anything it does not understand is silently ignored. Verify with render_get_settings.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| quality | No | 质量档位(如 low/medium/high/production);渲染器不支持则忽略。 | Quality tier (e.g. low/medium/high/production); ignored if unsupported. | |
| samples | No | 采样数/细分;渲染器不支持则忽略。 | Sample count / subdiv; ignored if unsupported. | |
| antialiasing | No | 是否开启抗锯齿,默认是。 | Enable antialiasing, default true. |