Fixed blit_area bug.
This commit is contained in:
parent
c402c342b8
commit
5235112424
|
@ -36,7 +36,8 @@ class Block(worldobject.WorldObject):
|
||||||
width=1, height=1, blit_area=None):
|
width=1, height=1, blit_area=None):
|
||||||
self.__dict__.update(locals())
|
self.__dict__.update(locals())
|
||||||
worldobject.WorldObject.__init__(self, level, x, y,
|
worldobject.WorldObject.__init__(self, level, x, y,
|
||||||
movable=movable, visible=visible)
|
movable=movable, visible=visible,
|
||||||
|
blit_area=blit_area)
|
||||||
|
|
||||||
for i in range(width):
|
for i in range(width):
|
||||||
for j in range(height):
|
for j in range(height):
|
||||||
|
|
|
@ -31,7 +31,8 @@ import copy
|
||||||
class WorldObject(object):
|
class WorldObject(object):
|
||||||
def __init__(self, level, x, y, z=0, direction=(1, 0), speed=4,
|
def __init__(self, level, x, y, z=0, direction=(1, 0), speed=4,
|
||||||
tile_x=64, tile_y=48,
|
tile_x=64, tile_y=48,
|
||||||
movable=False, blocking=True, is_moving=False, visible=True):
|
movable=False, blocking=True, is_moving=False, visible=True,
|
||||||
|
blit_area=None):
|
||||||
self.__dict__.update(locals())
|
self.__dict__.update(locals())
|
||||||
|
|
||||||
self.init_x = self.move_x = self.x = x - (x % self.tile_x)
|
self.init_x = self.move_x = self.x = x - (x % self.tile_x)
|
||||||
|
|
Loading…
Reference in New Issue