-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfireNFX_UserSettings_EXAMPLE_.py
39 lines (32 loc) · 1.38 KB
/
fireNFX_UserSettings_EXAMPLE_.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# IMPORTANT: For FL24 or greater, please edit Settings.json instead.
# Settings.json gets created automatically after the first load of the script.
#
# For FL21 or less, you can use this file.
#
# This is the user setting file that will allow you set some custom parameters.
#
# To use this file, it must be renamed to exactly: "fireNFX_UserSettings.py"
# and exist in the same folder as the other scripts.
#
# Be sure to only edit the part below where marked "OK TO EDIT..."
#
# DO NOT CHANGE THESE LINES:
from fireNFX_DefaultSettings import *
from fireNFX_Colors import *
from fireNFX_Defs import NotesListFlats, NotesListSharps
class TnfxUserSettings(TnfxDefaultSettings):
def __init__(self) -> None:
super().__init__()
# For explanation and list of ALL available settings see: fireNFX_DefaultSettings.py
#
# keep indentation as-is to function properly
#
# OK TO EDIT OR ADD AFTER THIS LINE:
self.PAD_PRESSED_COLOR = cRed
self.SHOW_PLAYBACK_NOTES = True
self.REOPEN_WINDOWS_AFTER_CLOSE_ALL = True
self.MARKER_PREFIX_TEXT = "{}-Marker" # the {} will be replaced with the bar number
self.PATTERN_NAME = "{}-Pattern" # the {} will be replaced with the pattern number
self.AUTO_SWITCH_KNOBMODE = True
self.AUTO_MAP_KNOWN_PARAMS_TO_USER_KNOBS = False
self.STARTINOG = False