Ejemplo n.º 1
0
def on_touch_move(touch):
    global moveprinted
    g = GestureHandler.on_touch_move(touch)
    if not moveprinted:
        print "Touch move"
        moveprinted = True
    signalCommand(g)
Ejemplo n.º 2
0
def on_touch_up(touch):
    global moveprinted
    g = GestureHandler.on_touch_up(touch)
    print "Touch up"
    signalCommand(g)
Ejemplo n.º 3
0
def on_touch_down(touch):
    global moveprinted
    g = GestureHandler.on_touch_down(touch)
    print "Touch down"
    signalCommand(g)