Example #1
0
 def do_animplay(self):
     anim = self.animdict[self.v_anim]
     somelibrary.play_animation(anim)
Example #2
0
 def do_play(self):
     action = self.actiondict[self.v_action]
     somelibrary.play_animation(action.animation)
     somelibrary.play_sound(action.soundfile)
Example #3
0
 def do_play(self):
     somelibrary.play_animation(self.v_inp)
Example #4
0
 def actionplay(self, id_action):
     action = self.actiondict[id_action]
     somelibrary.play_animation(action.animation)
     somelibrary.play_sound(action.soundfile)
Example #5
0
 def play(self, identifier):
     animation = self.animations[identifier]
     somelibrary.play_animation(animation)
Example #6
0
 def animplay(self, id_anim):
     anim = self.animdict[id_anim]
     somelibrary.play_animation(anim)