第一人称射击倍镜效果

作者:追风剑情 发布于:2024-11-30 1:49 分类:Shader

  在瞄准器前挂个Camera,将画面渲染到RenderTexture上,再将RenderTexture渲染到Quad上,最后将Quad放置在瞄准器镜框里,通过调整Camera的FOV值来产生放缩效果。

1、工程截图

111111111.png

222222.png

2、自定义Shader

  1. Shader "Custom/GunScope"
  2. {
  3. Properties
  4. {
  5. _MainTex ("Texture", 2D) = "white" {}
  6. _CullTex ("Circle", 2D) = "white" {}
  7. }
  8. SubShader
  9. {
  10. Tags { "Queue" = "Transparent" "IgnoreProjector" = "True" "RenderType" = "Transparent" }
  11. LOD 100
  12. Blend SrcAlpha OneMinusSrcAlpha
  13.  
  14. Pass
  15. {
  16. CGPROGRAM
  17. #pragma vertex vert
  18. #pragma fragment frag
  19. // make fog work
  20. #pragma multi_compile_fog
  21.  
  22. #include "UnityCG.cginc"
  23.  
  24. struct appdata
  25. {
  26. float4 vertex : POSITION;
  27. float2 uv : TEXCOORD0;
  28. };
  29.  
  30. struct v2f
  31. {
  32. float2 uv : TEXCOORD0;
  33. UNITY_FOG_COORDS(1)
  34. float4 vertex : SV_POSITION;
  35. };
  36.  
  37. sampler2D _MainTex;
  38. float4 _MainTex_ST;
  39.  
  40. sampler2D _CullTex;
  41. float4 _CullTex_ST;
  42.  
  43. v2f vert (appdata v)
  44. {
  45. v2f o;
  46. o.vertex = UnityObjectToClipPos(v.vertex);
  47. o.uv = TRANSFORM_TEX(v.uv, _MainTex);
  48. UNITY_TRANSFER_FOG(o,o.vertex);
  49. return o;
  50. }
  51.  
  52. fixed4 frag (v2f i) : SV_Target
  53. {
  54. // sample the texture
  55. fixed4 col = tex2D(_MainTex, i.uv);
  56. // apply fog
  57. UNITY_APPLY_FOG(i.fogCoord, col);
  58.  
  59. fixed4 col1 = tex2D(_CullTex, i.uv);
  60. //col.a = col1.a;
  61. clip(col1.a - 0.1);
  62. return col;
  63. }
  64. ENDCG
  65. }
  66. }
  67. }

3、效果测试

调整Camera的FOV值,产生缩放效果。
111.gif

标签: Unity3d

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号