To draw something in Unity, you must provide information that describes its shape, and information that describes the appearance of its surface. You use meshes to describe shapes, and materials to describe the appearance of surfaces.
Materials and shaders are closely linked; you always use materials with shaders.
이 페이지는 다음에 관한 정보를 제공합니다.
기능 | 빌트인 렌더 파이프라인 | 유니버설 렌더 파이프라인(URP) | 고해상도 렌더 파이프라인(HDRP) | 커스텀 스크립터블 렌더 파이프라인(SRP) |
---|---|---|---|---|
Materials | 지원 | 지원 | 지원 | 지원 |
A material contains a reference to a Shader object. If that Shader object defines material properties, then the material can also contain data such as colors or references to textures.
The Material class represents a material in C# code. For information, see Using Materials with C# scripts.
A material asset is a file with the .mat
extension. It represents a material in your Unity project. For information on viewing and editing a material asset using the Inspector window, see Material Inspector reference.
To render a GameObject using a material:
Renderer
. MeshRenderer is the most common and is suitable for most use cases, but SkinnedMeshRenderer, LineRenderer, or TrailRenderer might be more suitable if your GameObject has special requirements.To render a particle system in the Built-in Particle System using a material: