nathanhoad / godot_dialogue_manager

A powerful nonlinear dialogue system for Godot
MIT License
2.22k stars 170 forks source link

Allow titles in nested lines #692

Closed nathanhoad closed 1 month ago

nathanhoad commented 1 month ago

This adds support for having titles in nested lines. For example:

~ top_level_title
Nathan: Hello.
if SomeGlobal.some_property
  Nathan: This is nested.
  ~ nested_title
  Nathan: Nested titles are now supported.

Closes #690 Also fixes #691