first commit

This commit is contained in:
pennyrigate 2022-12-07 02:00:47 -05:00
commit 096ebe5aa4
275 changed files with 3937 additions and 0 deletions

14
scripts/recolor.tres Normal file
View file

@ -0,0 +1,14 @@
[gd_resource type="Shader" format=2]
[resource]
code = "// Recolor
shader_type canvas_item;
uniform sampler2D palette : hint_albedo;
void fragment() {
vec4 color = texture(TEXTURE, UV);
vec4 result_color = texture(palette, color.rg );
result_color.a = color.a;
COLOR = result_color;
}"