Beispiel #1
0
    def build(self):
        # Build child 'window' from class 'Window'.
        window = Window()
        window.build()
        # Set 'window' framerate with constant FPS.
        Clock.schedule_interval(window.render, 1 / FPS)
        # At app initiation call 'launchBall()'.
        window.launchBall()

        return window