I want to paste a background loop into my Python-Kivy script. The problem is, that I've got only a App().run()
under my script. So, if I put a loop, somewhere in the the App-Class, the whole App stopps updating and checking for events. Is there a function name like build(self)
, that's recognized by Kivy, and represents a main/background-loop?
If you don't know, what I'm talking about, feel free to ask.
In case you need to schedule a repeated activity in a loop, you can use
Clock.schedule_interval()
to call a function on a regular schedule:There is a lot more information on how to schedule events on a regular, conditional or one-time basis with Kivy's event loop here.