]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - tools/quake3/q3map2/map.c
Q3map2:
[xonotic/netradiant.git] / tools / quake3 / q3map2 / map.c
index d786fc541190ea692d4d7d0ffb521514d020af33..e9bc3921893526b25dd5fa175df3bb88bf39905e 100644 (file)
@@ -1769,6 +1769,9 @@ static qboolean ParseMapEntity( qboolean onlyLights, qboolean noCollapseGroups )
        else if ( strcmp( "", ValueForKey( mapEnt, "_sn" ) ) ) {
                shadeAngle = FloatForKey( mapEnt, "_sn" );
        }
+       else if ( strcmp( "", ValueForKey( mapEnt, "_sa" ) ) ) {
+               shadeAngle = FloatForKey( mapEnt, "_sa" );
+       }
        else if ( strcmp( "", ValueForKey( mapEnt, "_smooth" ) ) ) {
                shadeAngle = FloatForKey( mapEnt, "_smooth" );
        }
@@ -1789,6 +1792,9 @@ static qboolean ParseMapEntity( qboolean onlyLights, qboolean noCollapseGroups )
        else if ( strcmp( "", ValueForKey( mapEnt, "_samplesize" ) ) ) {
                lightmapSampleSize = IntForKey( mapEnt, "_samplesize" );
        }
+       else if ( strcmp( "", ValueForKey( mapEnt, "_ss" ) ) ) {
+               lightmapSampleSize = IntForKey( mapEnt, "_ss" );
+       }
 
        if ( lightmapSampleSize < 0 ) {
                lightmapSampleSize = 0;