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,28 @@
@tool
extends HBoxContainer
var parent_resource: DialogicChoiceEvent = null
func refresh() -> void:
$AddChoice.icon = get_theme_icon("Add", "EditorIcons")
if parent_resource is DialogicChoiceEvent:
show()
if len(parent_resource.text) > 12:
$Label.text = "End of choice ("+parent_resource.text.substr(0,12)+"...)"
else:
$Label.text = "End of choice ("+parent_resource.text+")"
else:
hide()
func _on_add_choice_pressed() -> void:
var timeline := find_parent('VisualEditor')
if timeline:
var resource := DialogicChoiceEvent.new()
resource.created_by_button = true
timeline.add_event_undoable(resource, get_parent().get_index()+1)
timeline.indent_events()
timeline.something_changed()
# Prevent focusing on future redos
resource.created_by_button = false