我一直在尝试使用本教程中的小部件http://kivy.org/docs/tutorials/firstwidget.html# 我无法对小部件进行任何触摸,它不会将我的点击识别为触摸。如何让它将我的点击检测为触摸响应?这是我现在的代码,
from kivy.app import App
from kivy.uix.widget import Widget
class MyPaintWidget(Widget):
def on_touch_down(self, touch):
with self.canvas:
Color(1, 1, 0)
d = 30.
Ellipse(pos=(touch.x - d / 2, touch.y - d / 2), size=(d, d))
class MyPaintApp(App):
def buil(self):
return MyPaintWidget()
if __name__ == '__main__':
MyPaintApp().run()