1uniform float opacity;
2uniform sampler2D tDiffuse;
3
4varying vec2 vUv;
5
6void main()
7{
8    vec4 texel = texture2D(tDiffuse, vUv);
9    gl_FragColor = opacity * texel;
10}
11