X-Git-Url: https://scm.cri.mines-paristech.fr/git/minwii.git/blobdiff_plain/848568d13d75f6f7b458ec464d5a5c836d0d8572..1146c6cc44b9dfde050dd218f343811661796ecc:/src/app/config.py?ds=sidebyside diff --git a/src/app/config.py b/src/app/config.py index 1c2b9bd..d8bdd6c 100755 --- a/src/app/config.py +++ b/src/app/config.py @@ -22,7 +22,6 @@ pygame.font.init() # playingscreen FRAMERATE = 100 -BORDER = 0 # 5px FIRST_HUE = 0.6 OFF_LUMINANCE = 0.2 OFF_SATURATION = 1 @@ -35,7 +34,8 @@ font_file = _computePath('fonts/Arial Unicode.ttf') NOTES_FONT = pygame.font.Font(font_file, 50) LYRICS_FONT = pygame.font.Font(None, 80) FONT_COLOR = (0,0,0) -DEFAULT_MIDI_VELOCITY = 96 +MIDI_VELOCITY_RANGE = (64, 127) +MIDI_PAN_RANGE = (32, 96) SONG_FILE_PATH = _computePath('../../chansons')