博客
关于我
UGUIImage透明渐变
阅读量:95 次
发布时间:2019-02-26

本文共 2863 字,大约阅读时间需要 9 分钟。

// Upgrade NOTE: replaced 'mul(UNITY_MATRIX_MVP,*)' with 'UnityObjectToClipPos(*)'//参考https://blog.csdn.net/qq_34537249/article/details/78264955Shader "Unlit/ImageAlpha"{	Properties	{		[PerRendererData]_MainTex ("Texture", 2D) = "white" {}		_AlphaLX("RangeAlphaLX",Float) = 0		_AlphaRX("RangeAlphaRX",Float) = 1		_AlphaTY("RangeAlphaTY",Float) = 1		_AlphaBY("RangeAlphaBY",Float) = 0		_AlphaPower("Power",Float) = 0 //透明度变化范围	}	SubShader	{		Tags { "RenderType"="Transparent" }		Blend SrcAlpha OneMinusSrcAlpha		Cull Back		Pass		{			CGPROGRAM			#pragma vertex vert			#pragma fragment frag						#include "UnityCG.cginc"			struct appdata			{				float4 vertex : POSITION;				float2 uv : TEXCOORD0;			};			struct v2f			{				float2 uv : TEXCOORD0;				float4 vertex : SV_POSITION;			};			sampler2D _MainTex;			float4 _MainTex_ST;			float _AlphaPower;			sampler2D _AlphaTex;			float _AlphaLX;			float _AlphaRX;			float _AlphaTY;			float _AlphaBY;			v2f vert (appdata v)			{				v2f o;				o.vertex = UnityObjectToClipPos(v.vertex);				o.uv = TRANSFORM_TEX(v.uv, _MainTex);				return o;			}			//此方法取自Unity默认Sprite的Shader			fixed4 SampleSpriteTexture (float2 uv)			{				fixed4 color = tex2D (_MainTex, uv);#if ETC1_EXTERNAL_ALPHA				// get the color from an external texture (usecase: Alpha support for ETC1 on android)				color.a = tex2D (_AlphaTex, uv).r;#endif //ETC1_EXTERNAL_ALPHA				return color;			}			fixed4 frag (v2f i) : SV_Target			{				// sample the texture				fixed4 col = SampleSpriteTexture(i.uv);				//利用透明度阈值和uv坐标的差来计算透明的程度和是否控制其半透				//四个方向只是对坐标的取值和正反方向不同,原理一致				fixed alphalx = col.a * lerp(1,_AlphaPower,(_AlphaLX-i.uv.x));				col.a = saturate(lerp(alphalx,col.a,step(_AlphaLX,i.uv.x)));				fixed alpharx = col.a * lerp(1,_AlphaPower,(i.uv.x-_AlphaRX));				col.a = saturate(lerp(col.a,alpharx,step(_AlphaRX,i.uv.x)));				fixed alphaby = col.a * lerp(1,_AlphaPower,(_AlphaBY-i.uv.y));				col.a = saturate(lerp(alphaby,col.a,step(_AlphaBY,i.uv.y)));				fixed alphaty = col.a * lerp(1,_AlphaPower,(i.uv.y-_AlphaTY));				col.a = saturate(lerp(col.a,alphaty,step(_AlphaTY,i.uv.y)));				return col;			}			ENDCG		}	}}

初始_AlphaLX("RangeAlphaLX",Float) = 0

        _AlphaRX("RangeAlphaRX",Float) = 1
        _AlphaTY("RangeAlphaTY",Float) = 1
        _AlphaBY("RangeAlphaBY",Float) = 0

修改_AlphaTY可以达到从上到下逐渐渐变 其他也是如此需要

接着跟代码  位0置挂上钩

using System.Collections;using System.Collections.Generic;using UnityEngine;using UnityEngine.UI;public class NewBehaviourScript : MonoBehaviour{    public float A = 0;    public Material _Material;    // Start is called before the first frame update    void Start()    {        _Material = GetComponent().material;    }    // Update is called once per frame    void Update()    {        //关联坐标  进行透明渐变        if (transform.localPosition.y > 0)        {            _Material.SetFloat("_AlphaRX", (50 - transform.localPosition.y)/50);        }            }}

 

 

你可能感兴趣的文章
Mysql5.7深入学习 1.MySQL 5.7 中的新增功能
查看>>
Webpack 之 basic chunk graph
查看>>
Mysql5.7版本单机版my.cnf配置文件
查看>>
mysql5.7的安装和Navicat的安装
查看>>
mysql5.7示例数据库_Linux MySQL5.7多实例数据库配置
查看>>
Mysql8 数据库安装及主从配置 | Spring Cloud 2
查看>>
mysql8 配置文件配置group 问题 sql语句group不能使用报错解决 mysql8.X版本的my.cnf配置文件 my.cnf文件 能够使用的my.cnf配置文件
查看>>
MySQL8.0.29启动报错Different lower_case_table_names settings for server (‘0‘) and data dictionary (‘1‘)
查看>>
MYSQL8.0以上忘记root密码
查看>>
Mysql8.0以上重置初始密码的方法
查看>>
mysql8.0新特性-自增变量的持久化
查看>>
Mysql8.0注意url变更写法
查看>>
Mysql8.0的特性
查看>>
MySQL8修改密码报错ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
查看>>
MySQL8修改密码的方法
查看>>
Mysql8在Centos上安装后忘记root密码如何重新设置
查看>>
Mysql8在Windows上离线安装时忘记root密码
查看>>
MySQL8找不到my.ini配置文件以及报sql_mode=only_full_group_by解决方案
查看>>
mysql8的安装与卸载
查看>>
MySQL8,体验不一样的安装方式!
查看>>