滚动的背景

作者:追风剑情 发布于:2016-11-8 20:56 分类:Shader

纹理的Wrap Mode一定要设置成Repeat

111111.png

Shader代码

  1. Shader "Custom/Chapter11-ScrollingBackground" {
  2. Properties {
  3. _MainTex ("Base (RGB)", 2D) = "white" {}
  4. _ScrollX ("Scroll Speed", float) = 1.0
  5. }
  6. SubShader {
  7. Tags { "RenderType"="Opaque" }
  8. LOD 200
  9. Pass {
  10. Tags { "LightMode"="ForwardBase" }
  11. CGPROGRAM
  12. #pragma vertex vert
  13. #pragma fragment frag
  14. #include "UnityCG.cginc"
  15. sampler2D _MainTex;
  16. float4 _MainTex_ST;
  17. float _ScrollX;
  18. struct a2v {
  19. float4 vertex : POSITION;
  20. float4 texcoord : TEXCOORD0;
  21. };
  22. struct v2f {
  23. float4 pos : SV_POSITION;
  24. half2 uv : TEXCOORD0;
  25. };
  26. v2f vert(a2v v) {
  27. v2f o;
  28. o.pos = mul(UNITY_MATRIX_MVP, v.vertex);
  29. o.uv = v.texcoord.xy*_MainTex_ST.xy+_MainTex_ST.zw;
  30. //frac(x):返回x的小数部分
  31. o.uv += frac(float2(_ScrollX, 0.0) * _Time.y);
  32. return o;
  33. }
  34. fixed4 frag(v2f i) : Color {
  35. fixed4 c = tex2D(_MainTex, i.uv);
  36. return c;
  37. }
  38. ENDCG
  39. }
  40. }
  41. FallBack "VertexLit"
  42. }

标签: Shader

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号