You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
660 B
22 lines
660 B
@tool
|
|
extends DialogicIndexer
|
|
|
|
|
|
func _get_events() -> Array:
|
|
return [this_folder.path_join('event_character.gd'), this_folder.path_join('event_position.gd')]
|
|
|
|
|
|
func _get_subsystems() -> Array:
|
|
return [{'name':'Portraits', 'script':this_folder.path_join('subsystem_portraits.gd')}]
|
|
|
|
|
|
func _get_settings_pages() -> Array:
|
|
return [this_folder.path_join('settings_portraits.tscn')]
|
|
|
|
func _get_text_effects() -> Array[Dictionary]:
|
|
return [{'command':'portrait', 'subsystem':'Portraits', 'method':'text_effect_portrait', 'arg':true}]
|
|
|
|
|
|
func _get_special_resources() -> Array[Dictionary]:
|
|
return list_special_resources('DefaultAnimations', &'PortraitAnimation')
|