struct v2f_surf { vec4 pos; float fog; vec4 hip_pack0; vec3 viewDir; vec4 hip_screen; }; struct appdata_full { vec4 vertex; vec4 tangent; vec3 normal; vec4 texcoord; vec4 texcoord1; vec4 color; }; varying vec4 xlv_FOG; attribute vec4 TANGENT; uniform vec4 unity_Scale; uniform vec3 _WorldSpaceCameraPos; uniform mat4 _World2Object; uniform vec4 _ProjectionParams; uniform vec4 _MainTex_ST; uniform vec4 _BumpMap_ST; void PositionFog ( in vec4 v, out vec4 pos, out float fog ) { vec4 tmpvar_1; tmpvar_1 = (gl_ModelViewProjectionMatrix * v); pos = tmpvar_1; float tmpvar_2; tmpvar_2 = pos.z; fog = tmpvar_2; } vec3 ObjSpaceViewDir ( in vec4 v ) { vec3 objSpaceCameraPos; vec4 tmpvar_1; tmpvar_1.w = 1.0; tmpvar_1.xyz = _WorldSpaceCameraPos.xyz.xyz; vec3 tmpvar_2; tmpvar_2 = ((_World2Object * tmpvar_1).xyz * unity_Scale.w); objSpaceCameraPos = tmpvar_2; return (objSpaceCameraPos - v.xyz); } vec4 ComputeScreenPos ( in vec4 pos ) { vec4 o; vec4 tmpvar_1; tmpvar_1 = (pos * 0.5); o = tmpvar_1; vec2 tmpvar_2; tmpvar_2.x = o.x; tmpvar_2.y = (o.y * _ProjectionParams.x); vec2 tmpvar_3; tmpvar_3 = (tmpvar_2 + o.w); o.xy = tmpvar_3.xy.xy; vec2 tmpvar_4; tmpvar_4 = pos.zw; o.zw = tmpvar_4.xxxy.zw; return o; } v2f_surf vert_surf ( in appdata_full v ) { mat3 rotation; vec3 binormal; v2f_surf o; PositionFog (v.vertex, o.pos, o.fog); vec2 tmpvar_1; tmpvar_1 = ((v.texcoord.xy * _MainTex_ST.xy) + _MainTex_ST.zw); o.hip_pack0.xy = tmpvar_1.xy.xy; vec2 tmpvar_2; tmpvar_2 = ((v.texcoord.xy * _BumpMap_ST.xy) + _BumpMap_ST.zw); o.hip_pack0.zw = tmpvar_2.xxxy.zw; vec4 tmpvar_3; tmpvar_3 = ComputeScreenPos (o.pos); vec4 tmpvar_4; tmpvar_4 = tmpvar_3; o.hip_screen = tmpvar_4; vec3 tmpvar_5; tmpvar_5 = cross (v.normal, v.tangent.xyz); vec3 tmpvar_6; tmpvar_6 = (tmpvar_5 * v.tangent.w); binormal = tmpvar_6; mat3 tmpvar_7; float tmpvar_8; tmpvar_8 = v.tangent.x; tmpvar_7[0].x = tmpvar_8; float tmpvar_9; tmpvar_9 = binormal.x; tmpvar_7[0].y = tmpvar_9; float tmpvar_10; tmpvar_10 = v.normal.x; tmpvar_7[0].z = tmpvar_10; float tmpvar_11; tmpvar_11 = v.tangent.y; tmpvar_7[1].x = tmpvar_11; float tmpvar_12; tmpvar_12 = binormal.y; tmpvar_7[1].y = tmpvar_12; float tmpvar_13; tmpvar_13 = v.normal.y; tmpvar_7[1].z = tmpvar_13; float tmpvar_14; tmpvar_14 = v.tangent.z; tmpvar_7[2].x = tmpvar_14; float tmpvar_15; tmpvar_15 = binormal.z; tmpvar_7[2].y = tmpvar_15; float tmpvar_16; tmpvar_16 = v.normal.z; tmpvar_7[2].z = tmpvar_16; mat3 tmpvar_17; tmpvar_17 = (tmpvar_7); rotation = (tmpvar_17); vec3 tmpvar_18; tmpvar_18 = ObjSpaceViewDir (v.vertex); vec3 tmpvar_19; tmpvar_19 = (rotation * tmpvar_18); o.viewDir = tmpvar_19; return o; } void main () { appdata_full xlt_v; v2f_surf xl_retval; vec4 tmpvar_1; tmpvar_1 = gl_Vertex.xyzw; vec4 tmpvar_2; tmpvar_2 = tmpvar_1; xlt_v.vertex = tmpvar_2; vec4 tmpvar_3; tmpvar_3 = TANGENT.xyzw; vec4 tmpvar_4; tmpvar_4 = tmpvar_3; xlt_v.tangent = tmpvar_4; vec3 tmpvar_5; tmpvar_5 = gl_Normal.xyz; vec3 tmpvar_6; tmpvar_6 = tmpvar_5; xlt_v.normal = tmpvar_6; vec4 tmpvar_7; tmpvar_7 = gl_MultiTexCoord0.xyzw; vec4 tmpvar_8; tmpvar_8 = tmpvar_7; xlt_v.texcoord = tmpvar_8; vec4 tmpvar_9; tmpvar_9 = gl_MultiTexCoord1.xyzw; vec4 tmpvar_10; tmpvar_10 = tmpvar_9; xlt_v.texcoord1 = tmpvar_10; vec4 tmpvar_11; tmpvar_11 = gl_Color.xyzw; vec4 tmpvar_12; tmpvar_12 = tmpvar_11; xlt_v.color = tmpvar_12; v2f_surf tmpvar_13; tmpvar_13 = vert_surf (xlt_v); v2f_surf tmpvar_14; tmpvar_14 = tmpvar_13; xl_retval = tmpvar_14; vec4 tmpvar_15; tmpvar_15 = xl_retval.pos.xyzw; vec4 tmpvar_16; tmpvar_16 = tmpvar_15; gl_Position = tmpvar_16; vec4 tmpvar_17; tmpvar_17.yzw = vec3(0.0, 0.0, 0.0); tmpvar_17.x = xl_retval.fog; vec4 tmpvar_18; tmpvar_18 = tmpvar_17; xlv_FOG = tmpvar_18; vec4 tmpvar_19; tmpvar_19 = xl_retval.hip_pack0.xyzw; vec4 tmpvar_20; tmpvar_20 = tmpvar_19; gl_TexCoord[0] = tmpvar_20; vec4 tmpvar_21; tmpvar_21.w = 0.0; tmpvar_21.xyz = xl_retval.viewDir.xyz; vec4 tmpvar_22; tmpvar_22 = tmpvar_21; gl_TexCoord[1] = tmpvar_22; vec4 tmpvar_23; tmpvar_23 = xl_retval.hip_screen.xyzw; vec4 tmpvar_24; tmpvar_24 = tmpvar_23; gl_TexCoord[2] = tmpvar_24; }