mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-30 06:11:17 +00:00
Dialogue System
This commit is contained in:
parent
77765a581e
commit
1fa77f0c03
690 changed files with 46698 additions and 14 deletions
42
addons/dialogic/Modules/Glossary/event_glossary.gd
Normal file
42
addons/dialogic/Modules/Glossary/event_glossary.gd
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue