Skip to content

Commit

Permalink
main.py: update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
NicholasMamo committed Apr 5, 2023
1 parent 1ff1a57 commit 47b4d4b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
This is only done to place the configuration at the top of the file.
"""

DURATION = 2000 # the number of milliseconds to spend fading
DUCK = 0.4 # the minimum volume to which to duck music applications
STEPS = 30 # how smooth the auto-ducking
FADE = lambda x: bezier(x) # the fade function
DURATION = 2000 # how long to spend ducking (in milliseconds; minimum: 0)
DUCK = 0.4 # the minimum volume to which to duck music applications (minimum: 0; maximum: 1)
STEPS = 30 # how smooth the auto-ducking (minimum: 1)
FADE = lambda x: bezier(x) # the fade function used to duck and unduck music applications

"""
MAIN LOOP
Expand Down

0 comments on commit 47b4d4b

Please sign in to comment.