class Default(BehaviourTask):

    def init(self):
        self.demo_skill = WalkAround(self.world)

    def tick(self):
        self.demo_skill.tick()
Beispiel #2
0
 def init(self):
     self.demo_skill = WalkAround(self.world)
Beispiel #3
0
class Default(BehaviourTask):
    def init(self):
        self.demo_skill = WalkAround(self.world)

    def tick(self):
        self.demo_skill.tick()
 def init(self):
     self.demo_skill = WalkAround(self.world)