32 lines
747 B
C#
32 lines
747 B
C#
|
|
using UnityEngine.Rendering;
|
||
|
|
|
||
|
|
namespace AllIn13DShader
|
||
|
|
{
|
||
|
|
public class ConverterURPLit : ConverterStandard
|
||
|
|
{
|
||
|
|
protected override void ConvertBlending()
|
||
|
|
{
|
||
|
|
if (from.IsKeywordEnabled("_SURFACE_TYPE_TRANSPARENT"))
|
||
|
|
{
|
||
|
|
if (from.IsKeywordEnabled("_ALPHAPREMULTIPLY_ON"))
|
||
|
|
{
|
||
|
|
SetBlendSrc(UnityEngine.Rendering.BlendMode.One);
|
||
|
|
SetBlendDst(UnityEngine.Rendering.BlendMode.OneMinusSrcAlpha);
|
||
|
|
}
|
||
|
|
else
|
||
|
|
{
|
||
|
|
SetBlendSrc(UnityEngine.Rendering.BlendMode.SrcAlpha);
|
||
|
|
SetBlendDst(UnityEngine.Rendering.BlendMode.OneMinusSrcAlpha);
|
||
|
|
}
|
||
|
|
|
||
|
|
SetAlphaPreset();
|
||
|
|
}
|
||
|
|
else
|
||
|
|
{
|
||
|
|
SetBlendSrc(UnityEngine.Rendering.BlendMode.One);
|
||
|
|
SetBlendDst(UnityEngine.Rendering.BlendMode.Zero);
|
||
|
|
SetOpaquePreset();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|