comparison gamelib/scenes/scene_widgets.py @ 266:80cb577e38f2

Non-interactive things no longer highlight the cursor.
author Jeremy Thurgood <firxen@gmail.com>
date Fri, 27 Aug 2010 20:08:18 +0200
parents 3b4a78422201
children 86e3d5dd7fa6
comparison
equal deleted inserted replaced
265:88a77875878e 266:80cb577e38f2
133 self._interact_hilight_color = Color(THECOLORS.keys()[number]) 133 self._interact_hilight_color = Color(THECOLORS.keys()[number])
134 134
135 def get_description(self): 135 def get_description(self):
136 return self.description 136 return self.description
137 137
138 def is_interactive(self):
139 return False
140
138 141
139 class Door(Thing): 142 class Door(Thing):
140 """A door somewhere""" 143 """A door somewhere"""
141 144
142 DEST = "map" 145 DEST = "map"