序列帧动画

作者:追风剑情 发布于:2016-11-6 14:37 分类:Shader

注意:如果动画纹理是透明图片,要勾上Alpha Is Transparency属性

111111.png

一、创建Shader

  1. //序列帧动画
  2. Shader "Custom/Chapter11-ImageSequenceAnimation" {
  3. Properties {
  4. _Color ("Color Tint", Color) = (1, 1, 1, 1)
  5. _MainTex ("Base (RGB)", 2D) = "white" {}
  6. _HorizontalAmount ("Horizontal Amount", Float) = 4
  7. _VerticalAmount ("Vertical Amount", Float) = 4
  8. _Speed ("Speed", Range(1, 100)) = 30
  9. }
  10. SubShader {
  11. Tags { "Queue"="Transparent" "IgnoreProjector"="True" "RenderType"="Transparent" }
  12. LOD 200
  13. Pass {
  14. Tags { "LightMode"="ForwardBase" }
  15. ZWrite Off
  16. Blend SrcAlpha OneMinusSrcAlpha
  17. CGPROGRAM
  18. #pragma vertex vert
  19. #pragma fragment frag
  20. #include "UnityCG.cginc"
  21. fixed4 _Color;
  22. sampler2D _MainTex;
  23. float4 _MainTex_ST;
  24. float _HorizontalAmount;
  25. float _VerticalAmount;
  26. half _Speed;
  27. struct a2v {
  28. float4 vertex : POSITION;
  29. float4 texcoord : TEXCOORD0;
  30. };
  31. struct v2f {
  32. float4 pos : SV_POSITION;
  33. half2 uv : TEXCOORD0;
  34. };
  35. v2f vert(a2v v) {
  36. v2f o;
  37. o.pos = mul(UNITY_MATRIX_MVP, v.vertex);
  38. //o.uv = TRANSFORM_TEX(v.texcoord, _MainTex);
  39. o.uv = v.texcoord.xy*_MainTex_ST.xy+_MainTex_ST.zw;
  40. return o;
  41. }
  42. fixed4 frag(v2f i) : Color {
  43. //floor(): 向下取整
  44. float time = floor(_Time.y * _Speed);
  45. float row = floor(time/_HorizontalAmount);
  46. float column = time - row * _HorizontalAmount;
  47. //对竖直方向的坐标偏移需要使用减法,这是因为在Unity中
  48. //纹理竖直方向的顺序(从下到上逐渐增大)和序列帧纹理中的顺序(播放顺序是从上到下)是相反的。
  49. half2 uv = i.uv + half2(column, -row);
  50. uv.x /= _HorizontalAmount;
  51. uv.y /= _VerticalAmount;
  52. fixed4 c = tex2D(_MainTex, uv);
  53. c.rgb *= _Color;
  54. return c;
  55. }
  56. ENDCG
  57. }
  58. }
  59. FallBack "Transparent/VertexLit"
  60. }

二、创建一个四边形(Quad)及材质


标签: Shader

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号