add imports
This commit is contained in:
parent
04999e80e9
commit
4d7147040c
@ -1,6 +1,9 @@
|
|||||||
import time
|
import time
|
||||||
from constants import *
|
from constants import *
|
||||||
from PyQt4 import QtGui
|
from PyQt4 import QtGui
|
||||||
|
from os.path import exists
|
||||||
|
from pybass_constants import *
|
||||||
|
|
||||||
def handle_packets(caller, total, record=True):
|
def handle_packets(caller, total, record=True):
|
||||||
# Record the packet if demos enabled
|
# Record the packet if demos enabled
|
||||||
if record and caller.parent.demo_recorder:
|
if record and caller.parent.demo_recorder:
|
||||||
@ -89,6 +92,7 @@ def handle_packets(caller, total, record=True):
|
|||||||
variant = 0
|
variant = 0
|
||||||
caller.parent.wtcesfx = audio.loadhandle(False, wtcefile+".opus" if exists(wtcefile+".opus") else wtcefile+".wav", 0, 0, 0)
|
caller.parent.wtcesfx = audio.loadhandle(False, wtcefile+".opus" if exists(wtcefile+".opus") else wtcefile+".wav", 0, 0, 0)
|
||||||
audio.sethandleattr(caller.parent.wtcesfx, BASS_ATTRIB_VOL, caller.parent.soundslider.value() / 100.0)
|
audio.sethandleattr(caller.parent.wtcesfx, BASS_ATTRIB_VOL, caller.parent.soundslider.value() / 100.0)
|
||||||
|
if caller.parent.wtcesfx:
|
||||||
audio.playhandle(caller.parent.wtcesfx, True)
|
audio.playhandle(caller.parent.wtcesfx, True)
|
||||||
caller.parent.WTCEsignal.emit(testimony, variant)
|
caller.parent.WTCEsignal.emit(testimony, variant)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user