This repository has been archived on 2025-10-11. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Fragmented/src/presets/shaders/mix.gdshader

9 lines
170 B
Text
Raw Normal View History

shader_type canvas_item;
//!load img2 ./icon.png
uniform sampler2D img2: repeat_enable, filter_nearest;
void fragment() {
COLOR = mix(COLOR, texture(img2, UV), .5);
}