예제 #1
0
def get_busy():
    for i in range(0, num_channels):
        if sound.busy(i):
            return True

    return False
예제 #2
0
    def get_sound(self):
        rv = sound.busy(self.id)
        if rv is not None:
            rv = sounds.get(rv, None)

        return rv
예제 #3
0
 def get_busy(self):
     return sound.busy(self.id)
예제 #4
0
파일: mixer.py 프로젝트: Darkess00/pgs4a
def get_busy():
    for i in range(0, num_channels):
        if sound.busy(i):
            return True

    return False
예제 #5
0
파일: mixer.py 프로젝트: Darkess00/pgs4a
    def get_sound(self):
        rv = sound.busy(self.id)
        if rv is not None:
            rv = sounds.get(rv, None)

        return rv
예제 #6
0
파일: mixer.py 프로젝트: Darkess00/pgs4a
 def get_busy(self):
     return sound.busy(self.id)