Changeset 583

Show
Ignore:
Timestamp:
06/26/08 16:59:51 (5 months ago)
Author:
tom
Message:

removing old options from TweenMap?

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/tom-tweenlite/lib/com/modestmaps/core/TileGrid.as

    r581 r583  
    342342                                        visibleTiles.push(tile); 
    343343 
    344                                         var tileReady:Boolean = !(tile.alpha < 1 || layersNeeded[tile]); 
     344                                        var tileReady:Boolean = tile.alpha == 1 && (layersNeeded[tile] == null); 
    345345                                        var foundParent:Boolean = false; 
    346346                                        var foundChildren:int = 0; 
  • branches/tom-tweenlite/lib/com/modestmaps/Map.as

    r582 r583  
    162162                        setExtent(extent);                       
    163163                } 
    164  
    165                         //addChild(grid.debugField); 
    166  
    167164        } 
    168165         
  • branches/tom-tweenlite/lib/com/modestmaps/TweenMap.as

    r571 r583  
    5252            { 
    5353                super(width, height, draggable, provider, rest);                 
    54                         TileGrid.MAX_CHILD_SEARCH = 1; 
    55                         TileGrid.MAX_PARENT_SEARCH = 5; 
    56                         TileGrid.MAX_TILES_TO_KEEP = 256;                        
    5754        } 
    5855