Advertisement
illwieckz

q3map2 lightmap xincrement

Feb 4th, 2016
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.43 KB | None | 0 0
  1.                 /* walk the origin around the lightmap */
  2.                 int xIncrement = MAX(1, lm->w / 15);
  3.                 int yIncrement = MAX(1, lm->w / 15);
  4.                 for ( y = 0; y < yMax; y += yIncrement )
  5.                 {
  6.                     for ( x = 0; x < xMax; x += xIncrement )
  7.                     {
  8.                         /* find a fine tract of lauhnd */
  9.                         ok = TestOutLightmapStamp( lm, lightmapNum, olm, x, y );
  10.  
  11.                         if ( ok ) {
  12.                             break;
  13.                         }
  14.                     }
  15.  
  16.                     if ( ok ) {
  17.                         break;
  18.                     }
  19.                 }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement