mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 10:35:34 +00:00
14 lines
328 B
GDScript
14 lines
328 B
GDScript
@tool
|
|
extends DialogicIndexer
|
|
|
|
|
|
func _get_events() -> Array:
|
|
return [this_folder.path_join('event_choice.gd')]
|
|
|
|
|
|
func _get_subsystems() -> Array:
|
|
return [{'name':'Choices', 'script':this_folder.path_join('subsystem_choices.gd')}]
|
|
|
|
|
|
func _get_settings_pages() -> Array:
|
|
return [this_folder.path_join('settings_choices.tscn')]
|