pass.fragment.fx 143 B

12345678
  1. // Samplers
  2. varying vec2 vUV;
  3. uniform sampler2D textureSampler;
  4. void main(void)
  5. {
  6. gl_FragColor = texture2D(textureSampler, vUV);
  7. }