Exemple #1
0
 def do_soundplay(self):
     sound = self.sounddict[self.v_sound]
     somelibrary.play_sound(sound)
Exemple #2
0
 def do_play(self):
     action = self.actiondict[self.v_action]
     somelibrary.play_animation(action.animation)
     somelibrary.play_sound(action.soundfile)
Exemple #3
0
 def do_play(self):
     somelibrary.play_sound(self.v_inp)
Exemple #4
0
 def actionplay(self, id_action):
     action = self.actiondict[id_action]
     somelibrary.play_animation(action.animation)
     somelibrary.play_sound(action.soundfile)
 def play(self, identifier):
     sound = self.sounds[identifier]
     somelibrary.play_sound(sound)
Exemple #6
0
 def soundplay(self, id_sound):
     sound = self.sounddict[id_sound]
     somelibrary.play_sound(sound)