首页 > 其他 > 详细

特效Shader对雾的处理

时间:2019-02-27 20:38:46      阅读:233      评论:0      收藏:0      [点我收藏+]

RFX4_Particle.shader案例

#ifdef BlendAdd
    UNITY_APPLY_FOG_COLOR(i.fogCoord, res, half4(0,0,0,0)); 
#endif
#ifdef BlendAlpha
    UNITY_APPLY_FOG(i.fogCoord, res);
#endif
#ifdef BlendMul
    res = lerp(half4(1,1,1,1), res, res.a);
    UNITY_APPLY_FOG_COLOR(i.fogCoord, res, half4(1,1,1,1)); // fog towards white due to our blend mode
#endif
#ifdef BlendMul2
        res = lerp(half4(0.5,0.5,0.5,0.5), res, res.a);
        UNITY_APPLY_FOG_COLOR(i.fogCoord, res, half4(0.5,0.5,0.5,0.5)); // fog towards gray due to our blend mode
#endif

重点是不同混合模式要对雾与颜色做不同的处理

特效Shader对雾的处理

原文:https://www.cnblogs.com/CloudLiu/p/10446532.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!