From 5cd50a8c6ecf77a17eab6dcda0425501772caaaf Mon Sep 17 00:00:00 2001 From: Simon Cross Date: Sun, 6 Mar 2016 01:33:25 +0200 Subject: [PATCH] Slight prettier but much hackier keypad requirement color. --- koperkapel/gamelib/keypad.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/koperkapel/gamelib/keypad.py b/koperkapel/gamelib/keypad.py index 5658db4..c7961db 100644 --- a/koperkapel/gamelib/keypad.py +++ b/koperkapel/gamelib/keypad.py @@ -4,8 +4,6 @@ import os from pgzero.loaders import images from pgzero.ptext import getsurf from ..actors.orientatedsurf import SurfActor -from ..constants import TILE_SIZE -from ..serums import SERUM_OVERLAY_COLORS class Keypad(SurfActor): @@ -15,7 +13,10 @@ class Keypad(SurfActor): self.game_pos = (x, y) self.required_smart = required_smart surf = images.load(os.path.join('fixtures', 'keypad')).copy() - surf.blit(getsurf(str(required_smart), owidth=2, ocolor=SERUM_OVERLAY_COLORS["smart"], color="black"), (0, 0)) + ocolor = (96, 96, 128, 255) + surf.blit(getsurf( + str(required_smart), owidth=2, + ocolor=ocolor, color="black"), (0, 0)) super().__init__(surf, anchor=(1, 1)) def activate(self, smart): -- 2.34.1