]> Untitled Git - wolf-seeking-sheep.git/blob - addons/dialogic/Modules/LayeredPortrait/index.gd
Squashed commit of the following:
[wolf-seeking-sheep.git] / addons / dialogic / Modules / LayeredPortrait / index.gd
1 @tool
2 extends DialogicIndexer
3
4
5 func _get_portrait_scene_presets() -> Array[Dictionary]:
6         return [
7                 {
8                         "path": this_folder.path_join("layered_portrait.tscn"),
9                         "name": "Layered Portrait",
10                         "description": "Base for a charcter made up of multiple sprites. Allows showing/switching/hiding the layers with the character event extra data.",
11                         "author":"Cake for Dialogic",
12                         "type": "Preset",
13                         "icon":"",
14                         "preview_image":[this_folder.path_join("layered_portrait_thumbnail.png")],
15                         "documentation":"https://docs.dialogic.pro/layered-portraits.html",
16                 },
17         ]