Add spine and dialogic museums

This commit is contained in:
2026-06-15 00:35:27 +02:00
parent 12efcbb4a6
commit a621366717
1088 changed files with 74220 additions and 0 deletions

View File

@@ -0,0 +1,82 @@
@tool
class_name DialogicHistoryEvent
extends DialogicEvent
## Event that allows clearing, pausing and resuming of history functionality.
enum Actions {CLEAR, PAUSE, RESUME}
### Settings
## The type of action: Clear, Pause or Resume
var action := Actions.PAUSE
#region EXECUTION
################################################################################
func _execute() -> void:
match action:
Actions.CLEAR:
dialogic.History.simple_history_content = []
Actions.PAUSE:
dialogic.History.simple_history_enabled = false
Actions.RESUME:
dialogic.History.simple_history_enabled = true
finish()
#endregion
#region INITIALIZE
################################################################################
func _init() -> void:
event_name = "History"
event_description = "Performs an action on the simple history."
set_default_color('Color9')
event_category = "Other"
event_sorting_index = 20
#endregion
#region SAVING/LOADING
################################################################################
func get_shortcode() -> String:
return "history"
func get_shortcode_parameters() -> Dictionary:
return {
#param_name : property_info
"action" : {"property": "action", "default": Actions.PAUSE,
"suggestions": func(): return {"Clear":{'value':0, 'text_alt':['clear']}, "Pause":{'value':1, 'text_alt':['pause']}, "Resume":{'value':2, 'text_alt':['resume', 'start']}}},
}
#endregion
#region EDITOR REPRESENTATION
################################################################################
func build_event_editor() -> void:
add_header_edit('action', ValueType.FIXED_OPTIONS, {
'options': [
{
'label': 'Pause History',
'value': Actions.PAUSE,
},
{
'label': 'Resume History',
'value': Actions.RESUME,
},
{
'label': 'Clear History',
'value': Actions.CLEAR,
},
]
})
#endregion