Newer
Older
DungeonShooting / DungeonShooting_Godot / resource / materlal / Blend.gdshader
@小李xl 小李xl on 16 Nov 2022 316 bytes 在ActivityObject上加动画播放器
shader_type canvas_item;

uniform vec4 blend : hint_color = vec4(1.0, 1.0, 1.0, 1.0);
uniform float schedule = 1.0;
//将贴图渲染为阴影

void fragment() {
	vec4 textureColor = texture(TEXTURE, UV);
	vec4 col = mix(textureColor, blend, schedule);
	COLOR = mix(vec4(0.0, 0.0, 0.0, 0.0), col, textureColor.a);
}