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.
43 lines
1.1 KiB
43 lines
1.1 KiB
@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():
|
|
pass
|