Version: 2021.3
Mesh components
Skinned Mesh Renderer component

Mesh Renderer 组件

Mesh Renderer 组件用于渲染网格。该组件与同一个游戏对象上的 Mesh Filter 组件配合使用;Mesh Renderer 组件渲染 Mesh Filter 组件引用的网格。

要渲染可变形网格,请改用 Skinned Mesh Renderer 组件。

在 C# 代码中,MeshRenderer 类表示 Mesh Renderer 组件。MeshRenderer 类的大部分功能继承自 Renderer 类。因此,该组件与其他从 Renderer 继承的组件(例如 Line RendererTrail Renderer)有很多共同之处。

Mesh Renderer Inspector 引用

The Mesh Renderer component as it appears in the Inspector window with Receive Global Illumination set to Light Probes.
The Mesh Renderer component as it appears in the Inspector window with Receive Global Illumination set to Light Probes.

A:Materials
B:Lighting
C:Lightmapping
D:Probes
E:Additional Settings

材质

Materials 部分
Materials 部分

Materials 部分列出了此组件使用的所有材质

属性 描述
Size The number of elements in the material list.

If you decrease the number of elements, Unity deletes the elements at the end of the list. If you increase the number of elements, Unity adds new elements to the end of the list. Unity populates new elements with the same material that the element at the end of the list uses.
Element The materials in the list. You can assign a material asset to each element.

By default, Unity orders the list alphabetically based on the name of the materials. This list is reorderable, and Unity updates the number of the elements automatically as you change their order.

注意:如果材质多于子网格,则 Unity 会使用剩余的每个材质逐一渲染最后一个子网格,使一个材质加在下一个材质之上。如果材质不是完全不透明的,则可以将不同的材质分层并创建有趣的视觉效果。但是,完全不透明的材质会覆盖之前的层,因此 Unity 应用于最后一个子网格的任何其他不透明材质都会对性能产生负面影响,但不会带来任何好处。

光照

Lighting 部分包含与光照相关的属性。

属性 描述
Cast Shadows Specify if and how this Renderer casts shadows when a suitable Light shines on it.

This property corresponds to the Renderer.shadowCastingMode API.
On This Renderer casts a shadow when a shadow-casting Light shines on it.
Off This Renderer does not cast shadows.
Two-sided This Renderer casts two-sided shadows. This means that single-sided objects like a plane or a quad can cast shadows, even if the light source is behind the mesh.

For Baked Global Illumination or Enlighten Realtime Global Illumination to support two-sided shadows, the material must support Double Sided Global Illumination.
Shadows Only This Renderer casts shadows, but the Renderer itself isn’t visible.
Receive Shadows Specify if Unity displays shadows cast onto this Renderer.

This property only has an effect if you enable Baked Global Illumination or Enlighten Realtime Global Illumination for this scene.

This property corresponds to the Renderer.receiveShadows API.
Contribute Global Illumination Include this Renderer in global illumination calculations, which take place at bake time.

This property only has an effect if you enable Baked Global Illumination or Enlighten Realtime Global Illumination for this scene.

Enabling this property enables the Contribute GI flag in the GameObject’s Static Editor Flags. It corresponds to the StaticEditorFlags.ContributeGI API.
Receive Global Illumination Whether Unity provides global illumination data to this Renderer from baked lightmaps, or from runtime Light Probes.

This property is only editable if you enable Contribute Global Illumination. It only has an effect if you enable Baked Global Illumination or Enlighten Realtime Global Illumination for this scene.

This property corresponds to the MeshRenderer.receiveGI API.
Lightmaps Unity provides global illumination data to this Renderer from lightmaps.
Light Probes Unity provides global illumination data to this Renderer from Light Probes in the scene.
Prioritize Illumination Enable this property to always include this Renderer in Enlighten Realtime Global Illumination calculations. This ensures that the Renderer is affected by distant emissives, even those which are normally excluded from Global Illumination calculations for performance reasons.

This property is visible only if Contribute GI is enabled in the GameObject’s Static Editor Flags, your project uses the Built-in Render Pipeline, and Enlighten Realtime Global Illumination is enabled in your scene.

Lightmapping

Lightmapping 部分包含与烘焙光照贴图以及实时光照贴图相关的属性。

This section is visible only if only if Receive Global Illumination is set to Lightmaps.

属性: 功能:
Scale in Lightmap Specify the relative size of the Renderer’s UVs within a lightmap.

A value of 0 results in the Renderer not being lightmapped, but it still contributes to lighting other Renderers in the Scene. A value greater than 1.0 increases the number of pixels (the lightmap resolution) used for this Renderer, while a value less than 1.0 decreases it.

You can use this property to optimize lightmaps so that important and detailed areas are more accurately lit. For example, an isolated building with flat, dark walls uses a low lightmap scale (less than 1.0) while a collection of colourful motorcycles displayed close together requires a high scale value.

This property corresponds to the MeshRenderer.scaleInLightmap API.
Stitch Seams Enable Lightmap seam stitching for this Renderer.

This property corresponds to the MeshRenderer.stitchLightmapSeams API.
Lightmap Parameters 为此渲染器选择或创建光照贴图参数资源。
Optimize Realtime UVs 确定 Unity 是否为此渲染器合并实时光照贴图 UV

仅当项目使用内置渲染管线 (Built-in Render Pipeline),并且在场景中启用了 Enlighten Realtime Global Illumination 时,此属性才可见。
Max Distance 指定在实时光照贴图中用于简化 UV 图表的最大世界空间距离。如果图表在此距离之内,则 Unity 会简化图表。

仅当项目使用内置渲染管线 (Built-in Render Pipeline),并且在场景中启用了 Enlighten Realtime Global Illumination 时,此属性才可见。
Max Angle 指定在实时光照贴图中共享 UV 边缘的面之间的最大角度(以度为单位)。如果面之间的角度小于此值,则 Unity 将简化 UV 图表。

仅当项目使用内置渲染管线 (Built-in Render Pipeline),并且在场景中启用了 Enlighten Realtime Global Illumination 时,此属性才可见。
Ignore Normals 启用此选项可防止 Unity 在实时光照贴图中拆分 UV 图表。

仅当项目使用内置渲染管线 (Built-in Render Pipeline),并且在场景中启用了 Enlighten Realtime Global Illumination 时,此属性才可见。
Min Chart Size 指定在实时光照贴图中用于 UV 图表的最小纹素大小。如果需要缝合,则值 4 将创建一个 4x4 纹素的图表来存储光照和方向性。如果不需要缝合,则值 2 将降低纹素密度并提供更好的光照构建时间和游戏性能。

仅当项目使用内置渲染管线 (Built-in Render Pipeline),并且在场景中启用了 Enlighten Realtime Global Illumination 时,此属性才可见。

烘焙光照数据(菜单:Window > Rendering > Lighting > Generate Lighting)后,此部分还将显示这个渲染器在当前场景中使用的烘焙光照贴图和实时光照贴图。

进行烘焙后在场景中显示的光照贴图示例。
进行烘焙后在场景中显示的光照贴图示例。

Probes

Probes 部分包含与光照探针反射探针有关的属性。

属性 描述
Light Probes Set how this Renderer receives light from the Light Probes system.

This property corresponds to the Renderer.lightProbeUsage API.
Off The Renderer doesn’t use any interpolated Light Probes.
Blend Probes The Renderer uses one interpolated Light Probe. This is the default value.
Use Proxy Volume The Renderer uses a 3D grid of interpolated Light Probes.
Custom Provided The Renderer extracts Light Probe shader uniform values from the MaterialPropertyBlock.
Proxy Volume Override Set a reference to another GameObject that has a Light Probe Proxy Volume component.

This property is only visible when Light Probes is set to Use Proxy Volume.
Reflection Probes Set how the Renderer receives reflections from the Reflection Probe system.

This property corresponds to the Renderer.probeAnchor API.
Off Disables Reflection Probes. Unity uses a skybox for reflection.
Blend Probes Enables Reflection Probes. Blending occurs only between Reflection Probes. This is useful in indoor environments where the character may transition between areas with different lighting settings.
Blend Probes and Skybox Enables Reflection Probes. Blending occurs between Reflection Probes, or between Reflection Probes and the default reflection. This is useful for outdoor environments.
Simple Enables Reflection Probes, but no blending occurs between Reflection Probes when there are two overlapping volumes.
Anchor Override Set the Transform that Unity uses to determine the interpolation position when using the Light Probe or Reflection Probe systems. By default, this is the centre of the bounding box of the Renderer’s geometry.

This property corresponds to the Renderer.probeAnchor API.

Additional Settings

Additional Settings 部分包含额外的属性。

属性 描述
Motion Vectors Set whether to use motion vectors to track this Renderer’s per-pixel, screen-space motion from one frame to the next. You can use this information to apply post-processing effects such as motion blur.

Note: not all platforms support motion vectors. See SystemInfo.supportsMotionVectors for more information.

This property corresponds to the Renderer.motionVectorGenerationMode API.
Camera Motion Only Use only Camera movement to track motion.
Per Object Motion Use a specific pass to track motion for this Renderer.
Force No Motion Do not track motion.
Dynamic Occlusion When Dynamic Occlusion is enabled, Unity’s occlusion culling system culls this Renderer when it is blocked from a Camera’s view by a Static Occluder. Otherwise, the system does not cull this Renderer when it is blocked from a Camera’s view by a Static Occluder.

Dynamic Occlusion is enabled by default. Disable it for effects such as drawing the outline of a character behind a wall.
Mesh components
Skinned Mesh Renderer component
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961