diff --git a/Internal/Shaders/BrushPreview.shader b/Internal/Shaders/BrushPreview.shader index eaf45e61..92c96f87 100644 --- a/Internal/Shaders/BrushPreview.shader +++ b/Internal/Shaders/BrushPreview.shader @@ -67,14 +67,12 @@ Shader "SabreCSG/BrushPreview" grid.y = step((1.0 - _GridThickness)*_GridSize, mod(grid.y, _GridSize)); float g = saturate(grid.x + grid.y); - - //o.Alpha = g; - - o.Albedo = c.rgb + (g * _GridStrength * _GridToggle); + + o.Emission = c.rgb + (g * _GridStrength * _GridToggle); o.Alpha = c.a + (g * _GridStrength * _GridToggle); } ENDCG } Fallback "Legacy Shaders/Transparent/VertexLit" -} \ No newline at end of file +}