Features
- DialogNode
- Dialob Bubble
- Characters and Portraits
- Customization using Godot’s Themes
Installation
Download the lastest release and extract the ZIP file. Move the addons folders to the root of your project. Finally, enable the plugin in your project settings, under plugins tab. It’s that easy!
Usage
Quick example to try the most simple functionality: showing text on the screen.
extends Node func _ready() -> void: # Creates a new DialogNode instance var dialog_node = DialogNode.instance() # Add the node as child add_child(dialog_node) # Show an string. BBCode works too! dialog_node.show_text("Hello world!")
For more, check this documentation.
License
MIT
Extra
Nothing yet. If you want to recommend a tutorial resource for this, use the suggestions page.