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,35 @@
@tool
class_name DialogicVisualEditorField
extends Control
signal value_changed(property_name:String, value:Variant)
var property_name := ""
var event_resource: DialogicEvent = null
#region OVERWRITES
################################################################################
## To be overwritten
func _load_display_info(info:Dictionary) -> void:
pass
## To be overwritten
func _set_value(value:Variant) -> void:
pass
## To be overwritten
func _autofocus() -> void:
pass
#endregion
func set_value(value:Variant) -> void:
_set_value(value)
func take_autofocus() -> void:
_autofocus()