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: 39963344dd88d060440cf11b87d88018a96fc0b8 (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);
}