From 286341c06ec01ea26723549996d12955d08defb9 Mon Sep 17 00:00:00 2001 From: anyreso Date: Sun, 21 Apr 2024 18:37:08 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix=20reticle=20color?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- interfaces/hud/hud.tscn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interfaces/hud/hud.tscn b/interfaces/hud/hud.tscn index d9729c2..55bda85 100644 --- a/interfaces/hud/hud.tscn +++ b/interfaces/hud/hud.tscn @@ -57,7 +57,7 @@ float circle(vec2 pos, float radius, float feather) { void fragment() { // draw reticle float alpha = circle(UV, .5, .04); - COLOR = vec4(color.rgb, alpha); + COLOR = vec4(texture(TEXTURE, UV).rgb, alpha); }" [sub_resource type="ShaderMaterial" id="ShaderMaterial_7blp5"]