X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fnetradiant.git;a=blobdiff_plain;f=tools%2Fquake3%2Fq3map2%2Fmap.c;fp=tools%2Fquake3%2Fq3map2%2Fmap.c;h=e9bc3921893526b25dd5fa175df3bb88bf39905e;hp=d786fc541190ea692d4d7d0ffb521514d020af33;hb=9fed37bae007bd5e53963ec67e925381609a2980;hpb=e995cc897b8a0d2b2828612cb0b226b7520fea86 diff --git a/tools/quake3/q3map2/map.c b/tools/quake3/q3map2/map.c index d786fc54..e9bc3921 100644 --- a/tools/quake3/q3map2/map.c +++ b/tools/quake3/q3map2/map.c @@ -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;