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.
72 lines
2.2 KiB
72 lines
2.2 KiB
@tool
|
|
class_name DialogicStyleEvent
|
|
extends DialogicEvent
|
|
|
|
## Event that allows changing the currently displayed style.
|
|
|
|
|
|
### Settings
|
|
|
|
## The name of the style to change to. Can be set on the DialogicNode_Style.
|
|
var style_name: String = ""
|
|
|
|
|
|
################################################################################
|
|
## EXECUTE
|
|
################################################################################
|
|
|
|
func _execute() -> void:
|
|
dialogic.Styles.load_style(style_name)
|
|
# we need to wait till the new layout is ready before continuing
|
|
await dialogic.get_tree().process_frame
|
|
finish()
|
|
|
|
|
|
################################################################################
|
|
## INITIALIZE
|
|
################################################################################
|
|
|
|
func _init() -> void:
|
|
event_name = "Change Style"
|
|
set_default_color('Color8')
|
|
event_category = "Visuals"
|
|
event_sorting_index = 1
|
|
|
|
|
|
################################################################################
|
|
## SAVING/LOADING
|
|
################################################################################
|
|
func get_shortcode() -> String:
|
|
return "style"
|
|
|
|
|
|
func get_shortcode_parameters() -> Dictionary:
|
|
return {
|
|
#param_name : property_info
|
|
"name" : {"property": "style_name", "default": "", 'suggestions':get_style_suggestions},
|
|
}
|
|
|
|
|
|
################################################################################
|
|
## EDITOR REPRESENTATION
|
|
################################################################################
|
|
|
|
func build_event_editor():
|
|
add_header_edit('style_name', ValueType.DYNAMIC_OPTIONS, {
|
|
'left_text' :'Use style',
|
|
'placeholder' : 'Default',
|
|
'suggestions_func' : get_style_suggestions,
|
|
'editor_icon' : ["PopupMenu", "EditorIcons"],
|
|
'autofocus' : true})
|
|
|
|
|
|
func get_style_suggestions(filter:String="") -> Dictionary:
|
|
var styles: Array = ProjectSettings.get_setting('dialogic/layout/style_list', [])
|
|
|
|
var suggestions := {}
|
|
suggestions['<Default Style>'] = {'value':'', 'editor_icon':["MenuBar", "EditorIcons"]}
|
|
for i in styles:
|
|
var style: DialogicStyle = load(i)
|
|
suggestions[style.name] = {'value': style.name, 'editor_icon': ["PopupMenu", "EditorIcons"]}
|
|
return suggestions
|