3 class_name DialogicSettingsPage
5 @export_multiline var short_info := ""
7 ## Called to get the title of the page
8 func _get_title() -> String:
12 ## Called to get the ordering of the page
13 func _get_priority() -> int:
17 ## Called to know whether to put this in the features section
18 func _is_feature_tab() -> bool:
22 ## Called when the settings editor is opened
23 func _refresh() -> void:
27 ## Called before the settings editor closes (another editor is opened)
28 ## Can be used to safe stuff
29 func _about_to_close() -> void:
33 ## Return a section with information.
34 func _get_info_section() -> Control: