Add fish silhouettes to Logbook

This commit is contained in:
Alexander Sellite 2026-07-31 00:03:47 -04:00
parent 51ce214a25
commit 3dfa6b221e
5 changed files with 173 additions and 33 deletions

View file

@ -0,0 +1,8 @@
shader_type canvas_item;
uniform vec4 silhouette_color : source_color = vec4(0.22, 0.23, 0.24, 1.0);
void fragment() {
vec4 source = texture(TEXTURE, UV);
COLOR = vec4(silhouette_color.rgb, source.a * silhouette_color.a);
}