Fix walkway and wall trims; not sure why shore frills don't also work

This commit is contained in:
2014-04-18 16:59:33 -04:00
parent 55c3f83d22
commit 4f741b440f
7 changed files with 106 additions and 1 deletions

10
osx/tools/mask.vert Normal file
View File

@@ -0,0 +1,10 @@
uniform mat4 trans;
void main() {
// transform the vertex position
gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;
// transform the texture coordinates
gl_TexCoord[0] = gl_TextureMatrix[0] * gl_MultiTexCoord0;
}