START = 'Retry?'
+class MyScrollView(ScrollView):
+
+ def on_touch_down(self, touch):
+ for child in self.children:
+ child.on_touch_down(touch)
+
+ def on_touch_up(self, touch):
+ for child in self.children:
+ child.on_touch_up(touch)
+
+
class GameApp(App):
title = "Bane's Befuddlement"
self.config, data=config_json)
def build(self):
- root = ScrollView(size_hint=(None, None))
+ root = MyScrollView(size_hint=(None, None))
level_name = self.config.getdefault('bane', 'start_level', None)
if level_name:
self.levels.set_level_to(level_name)