X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Fwidgets%2Frobot.py;fp=naja%2Fwidgets%2Frobot.py;h=7e218a93a7451291fa662b57508dfc09bb5e537a;hb=85f20ca165c1710c96afbc42fa07acb68b6b4c1d;hp=cfdb75013f6c64f1f7375e005a408323185b2d0d;hpb=4df5d499b14782109585a95f6c96d56963fb8231;p=naja.git diff --git a/naja/widgets/robot.py b/naja/widgets/robot.py index cfdb750..7e218a9 100644 --- a/naja/widgets/robot.py +++ b/naja/widgets/robot.py @@ -4,6 +4,7 @@ import pygame.locals as pgl from naja.constants import PLAYER_SIZE, BIT_SIZE, TILE_SIZE, BITS from naja.resources import resources +from naja.resources.mutators import EIGHT_BIT from naja.widgets.base import Widget IMG_MAP = { @@ -25,10 +26,12 @@ class RobotWidget(Widget): # Look up the required bits on the board location self.pos = (self.state.player.position[0] * TILE_SIZE[0] + 32, self.state.player.position[1] * TILE_SIZE[1] + BIT_SIZE[1]) - self.surface = resources.get_image('board/robot.png') + self.surface = resources.get_image('board/robot.png', + transforms=(EIGHT_BIT,)) for bit, img_name in IMG_MAP.iteritems(): if self.state.player.bits.check_bit(bit): - bit_img = resources.get_image(img_name) + bit_img = resources.get_image(img_name, + transforms=(EIGHT_BIT,)) self.surface.blit(bit_img, (0, 0)) def draw(self, surface):