From e437b53e5a1e93ff14f219b4a4cd53d5f893816e Mon Sep 17 00:00:00 2001 From: USS Constellation <98734231+CptMacTavish404@users.noreply.github.com> Date: Wed, 13 Aug 2025 22:16:48 +0545 Subject: [PATCH] Update grid.frag Improved code readability --- grid.frag | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/grid.frag b/grid.frag index 5b0ad09..0582ec2 100644 --- a/grid.frag +++ b/grid.frag @@ -1,5 +1,7 @@ #version 330 core out vec4 FragColor; -void main() { +void main() +{ FragColor = vec4(0.5, 0.5, 0.5, 0.7); // translucent blue lines } +