diff options
| author | chai <chaifix@163.com> | 2020-10-23 13:08:43 +0800 |
|---|---|---|
| committer | chai <chaifix@163.com> | 2020-10-23 13:08:43 +0800 |
| commit | b82da95b5181ac8bbae38efb13e950d5e88a4caa (patch) | |
| tree | 48a6f3269276484bbc7cfc95f0651f40a2176aa1 /Assets/AmplifyShaderEditor/Plugins/EditorResources/Shaders/ASESShaderSelectorUnlit.shader | |
| parent | 917e9e0b320775634dc2e710f7deac74fd0822f0 (diff) | |
*移动amplify shader editor到third party目录
Diffstat (limited to 'Assets/AmplifyShaderEditor/Plugins/EditorResources/Shaders/ASESShaderSelectorUnlit.shader')
| -rw-r--r-- | Assets/AmplifyShaderEditor/Plugins/EditorResources/Shaders/ASESShaderSelectorUnlit.shader | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/Assets/AmplifyShaderEditor/Plugins/EditorResources/Shaders/ASESShaderSelectorUnlit.shader b/Assets/AmplifyShaderEditor/Plugins/EditorResources/Shaders/ASESShaderSelectorUnlit.shader deleted file mode 100644 index a0a93f4c..00000000 --- a/Assets/AmplifyShaderEditor/Plugins/EditorResources/Shaders/ASESShaderSelectorUnlit.shader +++ /dev/null @@ -1,39 +0,0 @@ -Shader "Hidden/ASESShaderSelectorUnlit" -{ - SubShader - { - Tags { "RenderType"="Opaque" } - Pass - { - CGPROGRAM - #pragma vertex vert - #pragma fragment frag - #include "UnityCG.cginc" - - struct appdata - { - float4 vertex : POSITION; - }; - - struct v2f - { - float4 vertex : SV_POSITION; - }; - - uniform fixed4 _Color; - - v2f vert (appdata v) - { - v2f o; - o.vertex = UnityObjectToClipPos(v.vertex); - return o; - } - - fixed4 frag (v2f i) : SV_Target - { - return _Color; - } - ENDCG - } - } -} |
