当前位置:   article > 正文

spine在移动设备半透明部分发亮问题_微信小游戏 spine透明

微信小游戏 spine透明

首先查阅文档,看看自己是哪一种导入格式

官方文档

如果你是线性空间,那么大概率会遇到编辑器没问题,但是手机上显示异常的问题

找到Library/PackageCache/com.esotericsoftware.spine.spine-unity@dab0545c1b/Runtime/spine-unity/Shaders/SkeletonGraphic/CGIncludes/Spine-SkeletonGraphic-NormalPass.cginc

将下面部分

fixed4 frag (VertexOutput IN) : SV_Target
{
	half4 texColor = tex2D(_MainTex, IN.texcoord);

	#if defined(_STRAIGHT_ALPHA_INPUT)
	texColor.rgb *= texColor.a;
	#endif

	half4 color = (texColor + _TextureSampleAdd) * IN.color;
	color *= UnityGet2DClipping(IN.worldPosition.xy, _ClipRect);

	#ifdef UNITY_UI_ALPHACLIP
	clip (color.a - 0.001);
	#endif

	return color;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

替换为

fixed4 frag (VertexOutput IN) : SV_Target
{
	half4 texColor = tex2D(_MainTex, IN.texcoord);

	texColor.rgb *= texColor.a;

	half4 color = (texColor + _TextureSampleAdd) * IN.color;
	color *= UnityGet2DClipping(IN.worldPosition.xy, _ClipRect);

	#ifdef UNITY_UI_ALPHACLIP
	clip (color.a - 0.001);
	#endif

	return color;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

完成!注意一般不能直接修改,要先复制到新的shader中修改。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/399917
推荐阅读
相关标签
  

闽ICP备14008679号