UsePass 커맨드는 다른 셰이더 오브젝트의 이름이 지정된 패스를 삽입합니다. 이 커맨드를 사용하여 셰이더 소스 파일의 코드 중복을 줄일 수 있습니다.
ShaderLab 코드의 패스에 이름을 추가하는 방법에 대한 자세한 내용은 ShaderLab: 패스에 이름 추가를 참조하십시오.
기능 이름 | 빌트인 렌더 파이프라인 | 유니버설 렌더 파이프라인(URP) | 고해상도 렌더 파이프라인(HDRP) | 커스텀 SRP |
---|---|---|---|---|
UsePass | 지원 | 지원 | 지원 | 지원 |
서명 | 기능 |
---|---|
UsePass "Shader object name/PASS NAME IN UPPERCASE" |
이름이 지정된 셰이더 오브젝트의 이름이 지정된 패스를 삽입합니다. 이름이 지정된 셰이더 오브젝트가 두 개 이상의 서브셰이더를 포함하는 경우, Unity는 주어진 이름의 패스가 포함된 지원되는 첫 서브셰이더를 찾을 때까지 서브셰이더에서 반복을 수행합니다. Unity가 서브셰이더의 지원 여부를 어떻게 결정하는지 알아보려면 셰이더 오브젝트 소개를 참조하십시오. 서브셰이더가 같은 이름의 패스를 두 개 이상 포함하는 경우, Unity는 마지막으로 찾은 패스를 반환합니다. 일치하는 패스를 찾지 못하는 경우, Unity는 오류 셰이더를 표시합니다. |
이 예제 코드는 ExampleNamedPass라는 패스를 포함하는 셰이더 오브젝트인 NamedPass를 생성합니다.
Shader "Examples/ContainsNamedPass"
{
SubShader
{
Pass
{
Name "ExampleNamedPass"
// The rest of the Pass contents go here.
}
}
}
이 예제는 상기 예제 코드의 이름이 지정된 패스를 사용하는 UseNamedPass라는 셰이더 오브젝트를 생성합니다.
Shader "Examples/UsesNamedPass"
{
SubShader
{
UsePass "Examples/ContainsNamedPass/EXAMPLENAMEDPASS"
}
}
Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information
You've told us this page needs code samples. If you'd like to help us further, you could provide a code sample, or tell us about what kind of code sample you'd like to see:
You've told us there are code samples on this page which don't work. If you know how to fix it, or have something better we could use instead, please let us know:
You've told us there is information missing from this page. Please tell us more about what's missing:
You've told us there is incorrect information on this page. If you know what we should change to make it correct, please tell us:
You've told us this page has unclear or confusing information. Please tell us more about what you found unclear or confusing, or let us know how we could make it clearer:
You've told us there is a spelling or grammar error on this page. Please tell us what's wrong:
You've told us this page has a problem. Please tell us more about what's wrong:
Thank you for helping to make the Unity documentation better!
Your feedback has been submitted as a ticket for our documentation team to review.
We are not able to reply to every ticket submitted.