]> Untitled Git - wolf-seeking-sheep.git/blob - addons/dialogic/Editor/Settings/settings_page.gd
Updated export config options
[wolf-seeking-sheep.git] / addons / dialogic / Editor / Settings / settings_page.gd
1 @tool
2 extends Control
3 class_name DialogicSettingsPage
4
5 @export_multiline var short_info := ""
6
7 ## Called to get the title of the page
8 func _get_title() -> String:
9         return name
10
11
12 ## Called to get the ordering of the page
13 func _get_priority() -> int:
14         return 0
15
16
17 ## Called to know whether to put this in the features section
18 func _is_feature_tab() -> bool:
19         return false
20
21
22 ## Called when the settings editor is opened
23 func _refresh() -> void:
24         pass
25
26
27 ## Called before the settings editor closes (another editor is opened)
28 ## Can be used to safe stuff
29 func _about_to_close() -> void:
30         pass
31
32
33 ## Return a section with information.
34 func _get_info_section() -> Control:
35         return null