vuxa bez duxa

This commit is contained in:
2024-10-06 21:08:32 +02:00
parent d92c87bf80
commit feda1c5077
16 changed files with 284 additions and 30 deletions

17
game.gdshader Normal file
View File

@@ -0,0 +1,17 @@
//Shader by: Jordancjb (https://linktr.ee/jordancjb)
//Licensed under Creative Commons 0, Use as you like c:
shader_type canvas_item;
uniform sampler2D SCREEN_TEXTURE : hint_screen_texture, filter_linear_mipmap;
//Noise Texture
uniform sampler2D Noise;
//Settings
uniform float Transparency = 4.0;
uniform float Slow = 25.0;
//Shader Code
void fragment() {
COLOR = texture(SCREEN_TEXTURE, SCREEN_UV) * texture(Noise, texture(Noise, UV).xy + cos(TIME) / Slow) / Transparency;
}