Added Dialogic and a test dialog

This commit is contained in:
cblech
2024-10-28 12:06:03 +01:00
parent ea20332b4f
commit d231bb0773
683 changed files with 46264 additions and 1 deletions
@@ -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