59 lines
1.8 KiB
GDScript
59 lines
1.8 KiB
GDScript
@tool
|
|
extends DialogicIndexer
|
|
|
|
|
|
func _get_events() -> Array:
|
|
return [this_folder.path_join('event_character.gd')]
|
|
|
|
|
|
func _get_subsystems() -> Array:
|
|
return [{'name':'Portraits', 'script':this_folder.path_join('subsystem_portraits.gd')}, {'name':'PortraitContainers', 'script':this_folder.path_join('subsystem_containers.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},
|
|
{'command':'extra_data', 'subsystem':'Portraits', 'method':'text_effect_extradata', 'arg':true},
|
|
]
|
|
|
|
|
|
func _get_special_resources() -> Dictionary:
|
|
return {&'PortraitAnimation': list_animations("DefaultAnimations")}
|
|
|
|
|
|
func _get_portrait_scene_presets() -> Array[Dictionary]:
|
|
return [
|
|
{
|
|
"path": "",
|
|
"name": "Default Scene",
|
|
"description": "The default scene defined in Settings>Portraits.",
|
|
"author":"Dialogic",
|
|
"type": "Default",
|
|
"icon":"",
|
|
"preview_image":[this_folder.path_join("default_portrait_thumbnail.png")],
|
|
"documentation":"",
|
|
},
|
|
{
|
|
"path": "CUSTOM",
|
|
"name": "Custom Scene",
|
|
"description": "A custom scene. Should extend DialogicPortrait and be in @tool mode.",
|
|
"author":"Dialogic",
|
|
"type": "Custom",
|
|
"icon":"",
|
|
"preview_image":[this_folder.path_join("custom_portrait_thumbnail.png")],
|
|
"documentation":"https://docs.dialogic.pro/custom-portraits.html",
|
|
},
|
|
{
|
|
"path": this_folder.path_join("default_portrait.tscn"),
|
|
"name": "Simple Image Portrait",
|
|
"description": "Can display images as portraits. Does nothing else.",
|
|
"author":"Dialogic",
|
|
"type": "General",
|
|
"icon":"",
|
|
"preview_image":[this_folder.path_join("simple_image_portrait_thumbnail.png")],
|
|
"documentation":"",
|
|
}
|
|
]
|