We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7e38e1d + 61a1526 commit 528777dCopy full SHA for 528777d
addons/dialogic/Resources/dialogic_layout_base.gd
@@ -63,7 +63,9 @@ func _enter_tree() -> void:
63
64
65
func _exit_tree() -> void:
66
- Engine.set_meta("dialogic_persistent_style_info", _get_persistent_info())
+ var info: Dictionary = Engine.get_meta("dialogic_persistent_style_info", {})
67
+ info.merge(_get_persistent_info(), true)
68
+ Engine.set_meta("dialogic_persistent_style_info", info)
69
70
71
## To be overwritten. Return any info that a later used style might want to know.
0 commit comments