You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
607 B
36 lines
607 B
@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()
|