diff options
author | chai <chaifix@163.com> | 2022-04-22 19:24:15 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2022-04-22 19:24:15 +0800 |
commit | ded822e98e8eda49618d17e53407b0df1896e539 (patch) | |
tree | d7f09eafe52f7adb948889e459e900c360dbbdec /AlienSurvival/Assets/Resources/Shader | |
parent | c7de0419a8924ae7333bcaed39e797d7c9fc1e69 (diff) |
* rename AlienSurvival project to SurvivalTest
Diffstat (limited to 'AlienSurvival/Assets/Resources/Shader')
-rw-r--r-- | AlienSurvival/Assets/Resources/Shader/custom_project.shader | 71 | ||||
-rw-r--r-- | AlienSurvival/Assets/Resources/Shader/custom_project.shader.meta | 10 |
2 files changed, 0 insertions, 81 deletions
diff --git a/AlienSurvival/Assets/Resources/Shader/custom_project.shader b/AlienSurvival/Assets/Resources/Shader/custom_project.shader deleted file mode 100644 index 857510f..0000000 --- a/AlienSurvival/Assets/Resources/Shader/custom_project.shader +++ /dev/null @@ -1,71 +0,0 @@ -Shader "Unlit/custom_project" -{ - Properties - { - _MainTex ("Texture", 2D) = "white" {} - } - SubShader - { - Tags { "RenderType"="Opaque" } - LOD 100 - - Blend SrcAlpha OneMinusSrcAlpha - - Pass - { - CGPROGRAM - #pragma vertex vert - #pragma fragment frag - // make fog work - #pragma multi_compile_fog - - #include "UnityCG.cginc" - - struct appdata - { - float4 vertex : POSITION; - float2 uv : TEXCOORD0; - }; - - struct v2f - { - float2 uv : TEXCOORD0; - UNITY_FOG_COORDS(1) - fixed4 color: TEXCOORD2; - float4 vertex : SV_POSITION; - }; - - sampler2D _MainTex; - float4 _MainTex_ST; - - fixed _IsSceneView; - - fixed4 _Color; - - v2f vert (appdata v) - { - v2f o; - o.vertex = UnityObjectToClipPos(v.vertex); -#ifndef SCENE_VIEW - // o.vertex.y *= 1.414; -#endif - if(_IsSceneView == 0){ - o.vertex.y *= 1.414; - } - o.uv = TRANSFORM_TEX(v.uv, _MainTex); - UNITY_TRANSFER_FOG(o,o.vertex); - return o; - } - - fixed4 frag (v2f i) : SV_Target - { - // sample the texture - fixed4 col = tex2D(_MainTex, i.uv); - // apply fog - UNITY_APPLY_FOG(i.fogCoord, col); - return col; - } - ENDCG - } - } -} diff --git a/AlienSurvival/Assets/Resources/Shader/custom_project.shader.meta b/AlienSurvival/Assets/Resources/Shader/custom_project.shader.meta deleted file mode 100644 index bc91ff1..0000000 --- a/AlienSurvival/Assets/Resources/Shader/custom_project.shader.meta +++ /dev/null @@ -1,10 +0,0 @@ -fileFormatVersion: 2 -guid: 8ef4eb49d4654b64d95159eef3f0f427 -ShaderImporter: - externalObjects: {} - defaultTextures: [] - nonModifiableTextures: [] - preprocessorOverride: 0 - userData: - assetBundleName: - assetBundleVariant: |