You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
770 B
17 lines
770 B
namespace UnityEngine.Rendering.Universal |
|
{ |
|
internal static class DecalShaderPassNames |
|
{ |
|
public const string DecalPreview = "DecalPreview"; |
|
|
|
public const string DBufferProjector = "DBufferProjector"; |
|
public const string DecalProjectorForwardEmissive = "DecalProjectorForwardEmissive"; |
|
public const string DecalScreenSpaceProjector = "DecalScreenSpaceProjector"; |
|
public const string DecalGBufferProjector = "DecalGBufferProjector"; |
|
|
|
public const string DBufferMesh = "DBufferMesh"; |
|
public const string DecalMeshForwardEmissive = "DecalMeshForwardEmissive"; |
|
public const string DecalScreenSpaceMesh = "DecalScreenSpaceMesh"; |
|
public const string DecalGBufferMesh = "DecalGBufferMesh"; |
|
} |
|
}
|
|
|