示例#1
0
class bot5(Fly):
    curve = Curve(get_paths()[5].to_points(1000))
    target_indexes = range(5, 6)
示例#2
0
class bot3(Fly):
    curve = Curve(get_paths()[3].to_points(1000))
    target_indexes = range(3, 4)
示例#3
0
class bot4(Fly):
    curve = Curve(get_paths()[4].to_points(1000))
    target_indexes = range(4, 5)
示例#4
0
class bot1(Fly):
    curve = Curve(get_paths()[1].to_points(1000))
    target_indexes = range(1, 2)
示例#5
0
class bot2(Fly):
    curve = Curve(get_paths()[2].to_points(1000))
    target_indexes = range(2, 3)
示例#6
0
class bot8(Fly):
    curve = Curve(get_paths()[8].to_points(1000))
    target_indexes = range(8, 9)
示例#7
0
class bot0(Fly):
    curve = Curve(get_paths()[0].to_points(1000))
    target_indexes = range(0, 1)
示例#8
0
class bot7(Fly):
    curve = Curve(get_paths()[7].to_points(1000))
    target_indexes = range(7, 8)
示例#9
0
class bot6(Fly):
    curve = Curve(get_paths()[6].to_points(1000))
    target_indexes = range(6, 7)
示例#10
0
class bot3(Fly):
    duration = 10
    curve = Curve(get_paths()[3].to_points(1000))
    target_indexes = range(2, 3)
示例#11
0
class bot2(Fly):
    duration = 10
    curve = Curve(get_paths()[2].to_points(1000))
    target_indexes = range(1, 2)
示例#12
0
class bot1(Fly):
    duration = 10
    curve = Curve(get_paths()[1].to_points(1000))
    target_indexes = range(0, 1)