Add water shader by Atlas and, flip some faces and experiment with animations

This commit is contained in:
Jo 2025-07-25 03:50:52 +02:00
parent bf6da1e7c9
commit c50e9258cf
1764 changed files with 303341 additions and 66722 deletions

View file

@ -0,0 +1,46 @@
Shader "Hidden/ftAtlas"
{
Properties
{
}
SubShader
{
Tags { "RenderType"="Opaque" }
LOD 100
Pass
{
Blend One One
ZWrite Off
ZTest Always
Cull Off
CGPROGRAM
#pragma vertex vert
#pragma fragment frag
#include "UnityCG.cginc"
float isSelected;
struct v2f
{
float4 vertex : SV_POSITION;
};
v2f vert (appdata_full v)
{
v2f o;
float2 uv1 = v.texcoord1 * unity_LightmapST.xy + unity_LightmapST.zw;
o.vertex = float4(uv1.xy*2-1, 0.5, 1);
return o;
}
fixed4 frag (v2f i) : SV_Target
{
return isSelected > 0.0f ? float4(1,1,0,1) : 0.1;
}
ENDCG
}
}
}