/**
 * Copyright 1998-2010 Epic Games, Inc. All Rights Reserved.
 */

uniform sampler2D TextureBase;
uniform sampler2D TextureLightmap;

varying vec2 UVBase;
varying lowp vec4 PrelitColor;

void main()
{
    lowp vec4 BaseColor = texture2D(TextureBase, UVBase);

	ALPHAKILL(BaseColor.w)

    gl_FragColor = BaseColor * PrelitColor;
}

