Post Game jam commit

This commit is contained in:
Daniel Kauss Serna 2026-02-03 21:06:49 +01:00
commit 6db2131520
164 changed files with 172524 additions and 0 deletions

13
shaders/glow.gdshader Normal file
View file

@ -0,0 +1,13 @@
shader_type canvas_item;
uniform float intensity : hint_range(1.0, 5.0, 0.1);
void fragment() {
vec4 col = texture(TEXTURE, UV);
vec3 glow_col = col.xyz * intensity;
COLOR = vec4(glow_col, col.w);}
//void light() {
// // Called for every pixel for every light affecting the CanvasItem.
// // Uncomment to replace the default light processing function with this one.
//}