varying vec2 uv;
uniform sampler2D texture;
uniform vec4 color;

void main() {
	gl_FragColor = texture2D(texture,uv) * color;
}
