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,42 @@
@tool
class_name DialogicGlossaryEvent
extends DialogicEvent
## Event that does nothing right now.
################################################################################
## EXECUTE
################################################################################
func _execute() -> void:
pass
################################################################################
## INITIALIZE
################################################################################
func _init() -> void:
event_name = "Glossary"
set_default_color('Color6')
event_category = "Other"
event_sorting_index = 0
################################################################################
## SAVING/LOADING
################################################################################
func get_shortcode() -> String:
return "glossary"
func get_shortcode_parameters() -> Dictionary:
return {
}
################################################################################
## EDITOR REPRESENTATION
################################################################################
func build_event_editor() -> void:
pass