First work on dialogic, resized guild, and started implementing portraits.

This commit is contained in:
2025-08-14 10:26:24 -04:00
parent 95a7db036b
commit 3aeb3d44e6
959 changed files with 47688 additions and 46 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