Skip to content

Commit

Permalink
Merge pull request #2 from Maplesstar/models, ty maple
Browse files Browse the repository at this point in the history
Add Tooltip for Model Selection
  • Loading branch information
cjohnson57 authored Apr 23, 2022
2 parents 2eb94b4 + c6bb365 commit 2aefffd
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions SettingsList.py
Original file line number Diff line number Diff line change
Expand Up @@ -4453,6 +4453,15 @@ def __init__(self, name, gui_text, min, max, default, step=1,
shared = False,
cosmetic = True,
choices = get_model_choices(0),
gui_tooltip = '''\
Link's model will be replaced by the model selected.
To add more model options, save the .zobj file to
data/Models/Adult.
Caution: Any changes to Link's skeleton have the potential
to affect gameplay in significant ways and so are disallowed
for all recorded Racetime races. A note will appear at the top
of the pause screen if an irregular skeleton is detected.
''',
default = 'Default',
),
Setting_Info('model_adult_filepicker', str, "Adult Link Model", "Fileinput", False, {},
Expand All @@ -4475,6 +4484,15 @@ def __init__(self, name, gui_text, min, max, default, step=1,
shared = False,
cosmetic = True,
choices = get_model_choices(1),
gui_tooltip = '''\
Link's model will be replaced by the model selected.
To add more model options, save the .zobj file to
data/Models/Child.
Caution: Any changes to Link's skeleton have the potential
to affect gameplay in significant ways and so are disallowed
for all recorded Racetime races. A note will appear at the top
of the pause screen if an irregular skeleton is detected.
''',
default = 'Default',
),
Setting_Info('model_child_filepicker', str, "Child Link Model", "Fileinput", False, {},
Expand Down

0 comments on commit 2aefffd

Please sign in to comment.