0

changed Tile to RenderTile

This commit is contained in:
Andrew Brown
2011-12-28 14:53:47 -05:00
parent cbd5a0e1cc
commit 3d9603590b
2 changed files with 12 additions and 12 deletions

View File

@@ -502,7 +502,7 @@ class TileSet(object):
continue
# Computes the path in the quadtree from the col,row coordinates
tile = Tile.compute_path(c, r, depth)
tile = RenderTile.compute_path(c, r, depth)
if rendercheck == 2:
# Skip all other checks, mark tiles as dirty unconditionally
@@ -783,7 +783,7 @@ class RendertileSet(object):
c += 1
return c
class Tile(object):
class RenderTile(object):
"""A simple container class that represents a single render-tile.
A render-tile is a tile that is rendered, not a tile composed of other