summaryrefslogtreecommitdiff
path: root/Assets/Bundle/Shaders/Common/Image/ImageEffect.cginc
blob: 04334ee40dfa199c82020b9376a195a32d12a57c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// UnitLensEffect效果

sampler2D _MainTex;
float4 _MainTex_ST;

sampler2D _CameraDepthTexture;
float4 _CameraDepthTexture_ST;

sampler2D _UnitDepthTexture; // 配合_CameraDepthTexture定位角色
float4 _UnitDepthTexture_ST;

sampler2D _UnitWorldNormalTexture;
float4 _UnitWorldNormalTexture_ST;

sampler2D _UnitMotionVectorTexture;
float4 _UnitMotionVectorTexture_ST;

float4 _UnitTileOffset;