Shader "TextMeshPro/Distance Field (Surface)" { Properties { _FaceTex ("Fill Texture", 2D) = "white" {} _FaceUVSpeedX ("Face UV Speed X", Range(-5, 5)) = 0 _FaceUVSpeedY ("Face UV Speed Y", Range(-5, 5)) = 0 _FaceColor ("Fill Color", Vector) = (1,1,1,1) _FaceDilate ("Face Dilate", Range(-1, 1)) = 0 _OutlineColor ("Outline Color", Vector) = (0,0,0,1) _OutlineTex ("Outline Texture", 2D) = "white" {} _OutlineUVSpeedX ("Outline UV Speed X", Range(-5, 5)) = 0 _OutlineUVSpeedY ("Outline UV Speed Y", Range(-5, 5)) = 0 _OutlineWidth ("Outline Thickness", Range(0, 1)) = 0 _OutlineSoftness ("Outline Softness", Range(0, 1)) = 0 _Bevel ("Bevel", Range(0, 1)) = 0.5 _BevelOffset ("Bevel Offset", Range(-0.5, 0.5)) = 0 _BevelWidth ("Bevel Width", Range(-0.5, 0.5)) = 0 _BevelClamp ("Bevel Clamp", Range(0, 1)) = 0 _BevelRoundness ("Bevel Roundness", Range(0, 1)) = 0 _BumpMap ("Normalmap", 2D) = "bump" {} _BumpOutline ("Bump Outline", Range(0, 1)) = 0.5 _BumpFace ("Bump Face", Range(0, 1)) = 0.5 _ReflectFaceColor ("Face Color", Vector) = (0,0,0,1) _ReflectOutlineColor ("Outline Color", Vector) = (0,0,0,1) _Cube ("Reflection Cubemap", Cube) = "black" {} _EnvMatrixRotation ("Texture Rotation", Vector) = (0,0,0,0) _SpecColor ("Specular Color", Vector) = (0,0,0,1) _FaceShininess ("Face Shininess", Range(0, 1)) = 0 _OutlineShininess ("Outline Shininess", Range(0, 1)) = 0 _GlowColor ("Color", Vector) = (0,1,0,0.5) _GlowOffset ("Offset", Range(-1, 1)) = 0 _GlowInner ("Inner", Range(0, 1)) = 0.05 _GlowOuter ("Outer", Range(0, 1)) = 0.05 _GlowPower ("Falloff", Range(1, 0)) = 0.75 _WeightNormal ("Weight Normal", Float) = 0 _WeightBold ("Weight Bold", Float) = 0.5 _ShaderFlags ("Flags", Float) = 0 _ScaleRatioA ("Scale RatioA", Float) = 1 _ScaleRatioB ("Scale RatioB", Float) = 1 _ScaleRatioC ("Scale RatioC", Float) = 1 _MainTex ("Font Atlas", 2D) = "white" {} _TextureWidth ("Texture Width", Float) = 512 _TextureHeight ("Texture Height", Float) = 512 _GradientScale ("Gradient Scale", Float) = 5 _ScaleX ("Scale X", Float) = 1 _ScaleY ("Scale Y", Float) = 1 _PerspectiveFilter ("Perspective Correction", Range(0, 1)) = 0.875 _VertexOffsetX ("Vertex OffsetX", Float) = 0 _VertexOffsetY ("Vertex OffsetY", Float) = 0 } //DummyShaderTextExporter SubShader{ Tags { "RenderType"="Opaque" } LOD 200 CGPROGRAM #pragma surface surf Standard #pragma target 3.0 sampler2D _MainTex; struct Input { float2 uv_MainTex; }; void surf(Input IN, inout SurfaceOutputStandard o) { fixed4 c = tex2D(_MainTex, IN.uv_MainTex); o.Albedo = c.rgb; o.Alpha = c.a; } ENDCG } //CustomEditor "TMPro.EditorUtilities.TMP_SDFShaderGUI" }