Welcome to mirror list, hosted at ThFree Co, Russian Federation.

armature_shape_solid_frag.glsl « shaders « modes « draw « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 45748bf5644a36796e75f2b1e38a99623f68545a (plain)
1
2
3
4
5
6
7
8
9
10
11

uniform float alpha = 0.6;

in vec4 finalColor;

out vec4 fragColor;

void main()
{
	fragColor = vec4(finalColor.rgb, alpha);
}