0

refactored c extensions into one

This commit is contained in:
Aaron Griffith
2011-03-08 17:43:50 -05:00
parent 7555bcf1af
commit 07dd219d20
8 changed files with 123 additions and 268 deletions

View File

@@ -25,7 +25,7 @@ import nbt
import textures
import world
import composite
import _iterate
import c_overviewer
"""
This module has routines related to rendering one particular chunk into an
@@ -545,7 +545,7 @@ class ChunkRenderer(object):
if not img:
img = Image.new("RGBA", (384, 1728), (38,92,255,0))
_iterate.render_loop(self, img, xoff, yoff, blockData_expanded)
c_overviewer.render_loop(self, img, xoff, yoff, blockData_expanded)
for entity in tileEntities:
if entity['id'] == 'Sign':