Changeset 583
- Timestamp:
- 06/26/08 16:59:51 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/tom-tweenlite/lib/com/modestmaps/core/TileGrid.as
r581 r583 342 342 visibleTiles.push(tile); 343 343 344 var tileReady:Boolean = !(tile.alpha < 1 || layersNeeded[tile]);344 var tileReady:Boolean = tile.alpha == 1 && (layersNeeded[tile] == null); 345 345 var foundParent:Boolean = false; 346 346 var foundChildren:int = 0; branches/tom-tweenlite/lib/com/modestmaps/Map.as
r582 r583 162 162 setExtent(extent); 163 163 } 164 165 //addChild(grid.debugField);166 167 164 } 168 165 branches/tom-tweenlite/lib/com/modestmaps/TweenMap.as
r571 r583 52 52 { 53 53 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;57 54 } 58 55
