This repository has been archived on 2023-10-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-archive/source/blender/draw/modes/shaders/armature_shape_solid_frag.glsl

12 lines
129 B
GLSL

uniform float alpha = 0.6;
in vec4 finalColor;
out vec4 fragColor;
void main()
{
fragColor = vec4(finalColor.rgb, alpha);
}