diff --git a/tools/quake3/q3map2/shaders.c b/tools/quake3/q3map2/shaders.c index 0dfa2daa..26d4b20d 100644 --- a/tools/quake3/q3map2/shaders.c +++ b/tools/quake3/q3map2/shaders.c @@ -1772,6 +1772,13 @@ static void ParseShaderFile( const char *filename ) Parse1DMatrixAppend( shaderText, 3, cm->data ); } + /* dotProductScale ( X Y Z MIN MAX ) */ + else if( !Q_stricmp( token, "dotProductScale" ) ) + { + cm->type = CM_COLOR_DOT_PRODUCT_SCALE + alpha; + Parse1DMatrixAppend( shaderText, 3, cm->data ); + } + /* dotProduct2 ( X Y Z ) */ else if( !Q_stricmp( token, "dotProduct2" ) ) {