为什么当你右键点击画布时,kivy中的the first widget example会在黄色中间形成一个橙色圆圈,而当你点击左键时,会出现一个纯黄色的圆圈?
from kivy.app import App from kivy.uix.widget import Widget from kivy.graphics import Color, Ellipse 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 build(self): return MyPaintWidget() if __name__ == '__main__': MyPaintApp().run()
答案 0 :(得分:16)
要禁用多点触控模拟,请在导入任何其他kivy模块之前将其添加到包含主要功能的源文件中:
from kivy.config import Config
Config.set('input', 'mouse', 'mouse,multitouch_on_demand')
答案 1 :(得分:15)
这是多点触控仿真,你可以在这里看到如何禁用它