# HG changeset patch # User Simon Cross # Date 1283014003 -7200 # Node ID 264aa4d37e19861ab5fc637fb861cbddc98d2179 # Parent 235092095696f067410e01ad90f058d2b51e1ba1 Make arrows non-interactive. diff -r 235092095696 -r 264aa4d37e19 gamelib/scenes/engine.py --- a/gamelib/scenes/engine.py Sat Aug 28 18:40:08 2010 +0200 +++ b/gamelib/scenes/engine.py Sat Aug 28 18:46:43 2010 +0200 @@ -359,6 +359,9 @@ INITIAL = 'arrows' + def is_interactive(self): + return False + class ArrowsBottomLeft(Thing): NAME = 'engine.arrows_bottom_left' @@ -373,6 +376,9 @@ INITIAL = 'arrows' + def is_interactive(self): + return False + class ArrowsRight(Thing): NAME = 'engine.arrows_right' @@ -387,6 +393,9 @@ INITIAL = 'arrows' + def is_interactive(self): + return False + class DangerSign(Thing): NAME = 'engine.danger_sign'