Python Kivy 使散点图无法选择

Python Kivy make scatter unselectable

我正在我的 Kivy 应用程序中制作动画,但是在所有可用的 classes 中,似乎只有散点图可以正确地制作动画。问题是,当我触摸散点图时,我的 on_touch_move() 事件根本不起作用。我想用

制作不可选择的散点图
self.do_rotation = False
self.do_scale = False
self.do_translation = False

但这似乎不起作用。正如预期的那样,散点没有移动,但它仍然可以被选中。或者也许有一个 class 可以正确设置动画?我试过 Image、AsyncImage、Widget 和 Layouts。有什么想法吗?

@EDIT:这是我在说什么的最简单的例子:

from kivy.app import App
from kivy.core.window import Window
from kivy.uix.widget import Widget
from kivy.uix.scatter import Scatter
from kivy.animation import Animation
from kivy.graphics import Color, Rectangle

class ExampleWidget(Widget):
    def __init__(self, **kwargs):
        super(ExampleWidget, self).__init__(**kwargs)
        self.size = (100,100)
        self.pos = (100,100)
        with self.canvas:
            Color(1,0,0)
            self.texture = Rectangle(size=self.size, pos=self.pos)

    def on_pos(self, obj, value):
        try: self.texture.pos = value
        except: pass

class ExampleScatterTexture(Widget):
    def __init__(self, **kwargs):
        super(ExampleScatterTexture, self).__init__(**kwargs)
        with self.canvas:
            Color(0,1,0)
            texture = Rectangle(size=self.size, pos=self.pos)

class ExampleScatter(Scatter):
    def __init__(self, **kwargs):
        super(ExampleScatter, self).__init__(**kwargs)
        self.do_rotation = False
        self.do_scale = False
        self.do_translation = False
        self.size = (100,100)
        self.pos = (100,300)
        texture = ExampleScatterTexture(size=self.size)
        self.add_widget(texture)

class ExampleScreen(Widget):
    def __init__(self, **kwargs):
        super(ExampleScreen, self).__init__(**kwargs)
        self.size = Window.size

        example_widget = ExampleWidget()
        self.add_widget(example_widget)

        example_scatter = ExampleScatter()
        self.add_widget(example_scatter)

        #SCATTER IS GREEN, WIDGET IS RED
        example_widget_animation = Animation(pos=(300,100), duration=2., t='in_bounce') + Animation(pos=(100,100), duration=2., t='in_bounce')
        example_scatter_animation = Animation(pos=(300,300), duration=2., t='in_bounce') + Animation(pos=(100,300), duration=2., t='in_bounce')
        example_widget_animation.repeat = True
        example_scatter_animation.repeat = True
        example_widget_animation.start(example_widget)
        example_scatter_animation.start(example_scatter)

class BadAnimationExample(App):
    def build(self):
        root = ExampleScreen()
        return root

if __name__ == "__main__":
    BadAnimationExample().run()    

我想通了。诀窍不是让散点变得不可选择,而是不在我的 child class 上使用 on_touch_move() 方法,而是在 parent class.